Upload Button Icon Add office photos

Genpact

Compare button icon Compare button icon Compare

Filter interviews by

Genpact Senior Software Engineer Interview Questions, Process, and Tips

Updated 3 Aug 2022

Genpact Senior Software Engineer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. What are indexes in the database? what is the difference between clustered and non-clustered indexes?
  • Ans. 

    Indexes are used to improve database performance. Clustered indexes determine the physical order of data, while non-clustered indexes do not.

    • Indexes are used to speed up data retrieval operations in a database.

    • Clustered indexes determine the physical order of data in a table, while non-clustered indexes do not.

    • A table can have only one clustered index, but multiple non-clustered indexes.

    • Clustered indexes are generally ...

  • Answered by AI
  • Q2. Write a query to delete duplicate rows from a table.
  • Ans. 

    Query to delete duplicate rows from a table

    • Use GROUP BY clause to group the rows by their unique values

    • Use HAVING clause to filter out the groups with count greater than 1

    • Use DELETE statement to delete the duplicate rows

  • Answered by AI
  • Q3. Class A { public string A() { return "hello"; } } what is wrong with above code?
  • Q4. What is a singleton pattern and how to implement it?
  • Ans. 

    Singleton pattern restricts the instantiation of a class to a single instance and provides a global point of access to it.

    • Create a private constructor to restrict instantiation of the class

    • Create a private static instance of the class

    • Create a public static method to access the instance

    • Ensure thread safety if necessary

    • Examples: Database connection, Logger, Configuration settings

  • Answered by AI
  • Q5. How do you handle exceptions in stored procedures?
  • Ans. 

    Handle exceptions in stored procedures by using TRY-CATCH blocks.

    • Use TRY-CATCH blocks to catch and handle exceptions

    • Log the error message and severity level

    • Rollback the transaction if necessary

    • Rethrow the error if it cannot be handled

    • Use RAISERROR to raise custom error messages

  • Answered by AI
  • Q6. Explain SOLID principles.
  • Ans. 

    SOLID principles are a set of five design principles that help in creating maintainable and scalable software.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open-Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Subtypes should be substitutable for their base types.

    • I - Interface Segregation Principle: C...

  • Answered by AI
  • Q7. Difference between throw and throw exception?
  • Ans. 

    throw is used to throw an exception while throw exception is used to throw a specific exception.

    • throw is used to throw any type of exception while throw exception is used to throw a specific type of exception.

    • throw exception is followed by the type of exception that needs to be thrown.

    • throw can be used to throw any object while throw exception can only be used to throw an exception object.

    • Example: throw new Exception("

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to give quite a few interviews to be prepared.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on java spring boot, java 8 new features with examples, core java questions on generics and garbage collection.

Interview Preparation Tips

Interview preparation tips for other job seekers - Knowledge on microservices and java 8 is necessary

I applied via Naukri.com and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Explain about your framework, Oops Concepts, Collections, Questions on Selenium and Appium basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to have knowledge on basics of Selenium and Appium, Easy to clear interview

Interview Questionnaire 

1 Question

  • Q1. PlSQL technical questions and functional related of banking domain

Interview Questionnaire 

1 Question

  • Q1. Tell something that you never faced in an interview untill now?

I applied via Naukri.com and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. About Mainframe , Scenario Based mostly , DB2 Query
Round 3 - Technical 

(1 Question)

  • Q1. Scenario Based , COBOL DB2 JCL VSAM CICS TOOLS , SQLCODES etc.
Round 4 - HR 

(1 Question)

  • Q1. Normal package discussion , location constraints

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly Scenario Based Questions. It willbe for project specific interview so mostly asked on project related query

I applied via Naukri.com and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Sql queries, joins, stored procedures, code in vb.net

Interview Preparation Tips

Interview preparation tips for other job seekers - Very smooth. 3 rounds in total.

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. It was a technical round of 4-5 rounds and my position is for SAP MES role, they were asked many questions in ME/MII both.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in answering the questions they asked.
Have good technical knowledge on Mii and functional knowledge on Sap ME, so that you can answer better.
Have good understanding of SAP ui5.
Listen to the question carefully and anwer it.
Don't be in a hurry to anwer before they complete their questions.

All the best.

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of redux and react es6 js css3

Interview Preparation Tips

Interview preparation tips for other job seekers - First of all go through the job description .Brush up all your basics .And do practice hands on coding.

I applied via Naukri.com and was interviewed in Mar 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1) OOOps concept 2) SQLbasic question all theory questions no coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all theory questions like generics, delegates, joins, views, oops

Genpact Interview FAQs

How many rounds are there in Genpact Senior Software Engineer interview?
Genpact interview process usually has 1 rounds. The most common rounds in the Genpact interview process are Technical.
How to prepare for Genpact Senior Software Engineer 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 Genpact. The most common topics and skills that interviewers at Genpact expect are Python, SQL, Argus, Integration and Interfaces.
What are the top questions asked in Genpact Senior Software Engineer interview?

Some of the top questions asked at the Genpact Senior Software Engineer interview -

  1. What are indexes in the database? what is the difference between clustered and ...read more
  2. what is a singleton pattern and how to implement ...read more
  3. How do you handle exceptions in stored procedur...read more

Tell us how to improve this page.

Genpact Senior Software Engineer Salary
based on 344 salaries
₹7.4 L/yr - ₹30 L/yr
10% more than the average Senior Software Engineer Salary in India
View more details

Genpact Senior Software Engineer Reviews and Ratings

based on 25 reviews

4.3/5

Rating in categories

3.8

Skill development

4.2

Work-life balance

3.6

Salary

4.2

Job security

3.7

Company culture

3.2

Promotions

3.6

Work satisfaction

Explore 25 Reviews and Ratings
Process Developer
36.6k salaries
unlock blur

₹1.2 L/yr - ₹6.8 L/yr

Process Associate
28.1k salaries
unlock blur

₹0.9 L/yr - ₹6.5 L/yr

Assistant Manager
20.4k salaries
unlock blur

₹4 L/yr - ₹14.6 L/yr

Management Trainee
19.8k salaries
unlock blur

₹1.6 L/yr - ₹8.5 L/yr

Manager
7.5k salaries
unlock blur

₹7 L/yr - ₹24 L/yr

Explore more salaries
Compare Genpact with

Accenture

3.8
Compare

Capgemini

3.7
Compare

TCS

3.7
Compare

Cognizant

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