Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by SunTec Business Solutions Team. If you also belong to the team, you can get access from here

SunTec Business Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

SunTec Business Solutions Interview Questions and Answers

Updated 12 Oct 2024

SunTec Business Solutions Interview Experiences

Popular Designations

7 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Good communication and aptitude

Round 2 - Coding Test 

Sort array in descending order

Round 3 - HR 

(1 Question)

  • Q1. Introduction on myself and background

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic java api questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Try basic things

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write SQL join queries
  • Ans. 

    SQL join queries are used to combine rows from two or more tables based on a related column between them.

    • Use INNER JOIN to return rows when there is at least one match in both tables

    • Use LEFT JOIN to return all rows from the left table and the matched rows from the right table

    • Use RIGHT JOIN to return all rows from the right table and the matched rows from the left table

    • Use FULL JOIN to return rows when there is a match

  • Answered by AI

Skills evaluated in this interview

Software Tester Interview Questions asked at other Companies

Q1. Which is a best technique to generate automated test report ?
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Oct 2023.

Round 1 - Aptitude Test 

Futuremug is conducting aptitude its easy

Round 2 - Coding Test 

Hacker rank is coding test it is easy

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

SunTec Business Solutions interview questions for popular designations

 Software Developer

 (2)

 Analyst

 (1)

 Software Engineer

 (1)

 Plsql Developer

 (1)

 Software Tester

 (1)

 Associate Software Engineer

 (1)

I applied via Naukri.com and was interviewed in Feb 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Write a code to pull-up mass data from one table and load into our rough table ? Written the code efficiently Again asked how to tune this code with performance efficiency. Answered correctly about more ...
  • Ans. 

    Code to pull-up mass data from one table and load into another table efficiently

    • Use INSERT INTO SELECT statement to pull data from source table and load into target table

    • Use WHERE clause to filter data if required

    • Use INDEXES on columns used in WHERE clause to improve performance

    • Use BULK COLLECT to fetch data in batches to improve performance

    • Use PARALLEL hint to execute the query in parallel if the table is large

    • Use NOL...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Normal basic and advanced topic related question and asked some tricky question About PLSQL and performance tunning AwR ,ADDM difference asked gather stats
Round 3 - Vice President 

(1 Question)

  • Q1. General question about my Experience and functional
Round 4 - HR 

(6 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your salary expectations?
  • Q4. What is your family background?
  • Q5. Share details of your previous job.
  • Q6. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Suntec is good opportunity for all fresher andExperience and it is product based organisation.provided good amount of hike .People has good and very polite all the management team.

Skills evaluated in this interview

Plsql Developer Interview Questions asked at other Companies

Q1. What is procedure in plsql and it's syntax and difference between procedure and function?
View answer (7)

Interview Questionnaire 

3 Questions

  • Q1. Tell us about your final year project.
  • Q2. Any exposure with coding?
  • Ans. 

    Yes, I have exposure with coding.

    • I have experience with programming languages such as Java, Python, and C++.

    • I have completed various coding projects during my academic studies.

    • I have also participated in coding competitions and hackathons.

    • I am familiar with software development methodologies such as Agile and Scrum.

  • Answered by AI
  • Q3. What was your contribution in your project?

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

Jobs at SunTec Business Solutions

View all

Analyst Interview Questions & Answers

user image Anonymous

posted on 19 Nov 2020

I applied via Walk-in

Interview Questionnaire 

1 Question

  • Q1. Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java coding and development
  • Q2. Db and development skills
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. OOPS , multi thread, exception
  • Q2. Java 8 features

Interview Preparation Tips

Interview preparation tips for other job seekers - Need good knowledge of core java
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Moderate round . Easy to clear

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain stream api
  • Ans. 

    Stream API is a feature in Java that allows processing collections of objects in a functional style.

    • Stream API provides a way to perform operations on a collection of objects in a declarative way.

    • It supports functional-style operations like map, filter, reduce, and forEach.

    • Streams can be created from various sources like collections, arrays, or I/O channels.

    • Stream operations are lazy, meaning they are only executed whe...

  • Answered by AI
  • Q2. Data base connection in sprinh boot
  • Ans. 

    Database connection in Spring Boot is configured using application.properties or application.yml file.

    • Define database connection properties in application.properties or application.yml file

    • Use @EnableJpaRepositories annotation to enable JPA repositories

    • Use @Entity annotation to define entity classes

    • Use @Autowired annotation to inject the DataSource or EntityManager

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why you want to join in mgs
  • Ans. 

    I want to join MGS because of its reputation for cutting-edge technology and innovative projects.

    • Exciting opportunities for growth and learning

    • Strong focus on technology and innovation

    • Desire to work with talented and passionate individuals

    • Alignment with company values and culture

  • Answered by AI
  • Q2. Notice period days

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more in coding

Skills evaluated in this interview

SunTec Business Solutions Interview FAQs

How many rounds are there in SunTec Business Solutions interview?
SunTec Business Solutions interview process usually has 2-3 rounds. The most common rounds in the SunTec Business Solutions interview process are Technical, HR and Aptitude Test.
How to prepare for SunTec Business Solutions interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at SunTec Business Solutions. The most common topics and skills that interviewers at SunTec Business Solutions expect are Java, Selenium, Spring, SQL and Shell Scripting.
What are the top questions asked in SunTec Business Solutions interview?

Some of the top questions asked at the SunTec Business Solutions interview -

  1. Write a code to pull-up mass data from one table and load into our rough table ...read more
  2. Any exposure with codi...read more
  3. Write SQL join quer...read more

Tell us how to improve this page.

SunTec Business Solutions Interview Process

based on 6 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
KPIT Technologies Interview Questions
3.4
 • 281 Interviews
View all

SunTec Business Solutions Reviews and Ratings

based on 132 reviews

2.8/5

Rating in categories

2.8

Skill development

2.2

Work-life balance

3.1

Salary

3.1

Job security

2.5

Company culture

2.6

Promotions

2.4

Work satisfaction

Explore 132 Reviews and Ratings
Technical Trainer

Thiruvananthapuram

2-6 Yrs

Not Disclosed

Explore more jobs
Software Engineer
169 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
115 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Architect
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare SunTec Business Solutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview