Upload Button Icon Add office photos

Genpact

Compare button icon Compare button icon Compare

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Genpact Senior Software Engineer Interview Questions and Answers

Updated 24 Jun 2025

7 Interview questions

A Senior Software Engineer was asked 1mo ago
Q. What does GenAI mean?
Ans. 

GenAI refers to Generative AI, a subset of artificial intelligence focused on creating content, such as text, images, and music.

  • Generative AI models, like GPT-3, can produce human-like text based on prompts.

  • DALL-E is an example of Generative AI that creates images from textual descriptions.

  • Generative AI can be used in various fields, including art, music, and software development.

  • Applications include chatbots, con...

A Senior Software Engineer was asked
Q. What is the 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 Except...

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
Q2. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q4. If you have to prioritize between coding standards and project de ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more
A Senior Software Engineer was asked
Q. 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

A Senior Software Engineer was asked
Q. 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 Princip...

What people are saying about Genpact

View All
a business data analyst
1w
TE Connectivity JP Nagar, Bengaluru—any insiders?
What's the real deal at TE Connectivity (Kalyani Magnum, JP Nagar, Bengaluru)? How’s the work-life balance? Stressful or chill? I’m in an IC role, 1 PM to 10 PM shift, Transport ICT business unit. Anyone else in the same BU? What about yearly hikes, free food, and cab perks? Looking for the inside scoop from people at the Bengaluru location!
Got a question about Genpact?
Ask anonymously on communities.
A Senior Software Engineer was asked
Q. 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

What are the roles & responsibilities of a Senior Software Engineer at Genpact?

Data Engineering

  • Design, develop, and maintain data pipelines using Python and SQL
  • Implement serverless solutions using AWS Lambda

Read full roles & responsibilities

A Senior Software Engineer was asked
Q. What is a singleton pattern and how do you 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

Genpact HR Interview Questions

641 questions and answers

Q. What are your reasons for leaving your current job?
Q. What is your favourite subject?
Q. Why are you choosing this company?
A Senior Software Engineer was asked
Q. 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 gener...

Are these interview questions helpful?

Genpact Senior Software Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. What are design patterns?
  • Q2. What does GenAI means?
  • Ans. 

    GenAI refers to Generative AI, a subset of artificial intelligence focused on creating content, such as text, images, and music.

    • Generative AI models, like GPT-3, can produce human-like text based on prompts.

    • DALL-E is an example of Generative AI that creates images from textual descriptions.

    • Generative AI can be used in various fields, including art, music, and software development.

    • Applications include chatbots, content ...

  • Answered by AI

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.
  • 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?

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 Recruitment Consultant and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on string manipulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Infosys conducts easy interview and most of the questions are straight forward

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Discuss 4 case study related to supply chain management.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Software Engineer interview:
  • Supply Chain Management
Interview preparation tips for other job seekers - Develop some case study of your own and also deep analysis for each.

I applied via Monster and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. About MVC and .NET framework
  • Q2. Questions on Rest API, Core services and WCF

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to be strong in basic .NET framework

I applied via Company Website and was interviewed before May 2021. There were 3 interview rounds.

Round 1 - Assignment 

Python assignment

Round 2 - Technical 

(1 Question)

  • Q1. Basic python questions and coding questions. Oops concepts and writing inheritence code.
Round 3 - HR 

(1 Question)

  • Q1. Just salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Study all concepts of python well along with its examples... And practice coding questions well.

Interview Questionnaire 

5 Questions

  • Q1. Basic telephone round probably around 3 times
  • Q2. About ourself and past experience
  • Q3. And they really see if we are interested or not, nothing technical
  • Q4. Telephone technical interview
  • Ans. 

    The question tests problem-solving skills through a telephone-related technical challenge.

    • Understand the problem clearly before attempting to solve it.

    • Break down the problem into smaller, manageable parts.

    • Consider edge cases, such as handling invalid inputs.

    • Use examples to illustrate your thought process, like simulating a call flow.

  • Answered by AI
  • Q5. My role is pega developer so questions are on pega

Interview Preparation Tips

Round: Face to face technical
Experience: Asked each and every aspect in pega

I applied via Walk-in and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is C++
  • Q2. What is Link List

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About the project

Interview Preparation Tips

Interview preparation tips for other job seekers - I think being honest about every question asked in the interview is the best practice the crack any interview.

I applied via Other and was interviewed in Nov 2017. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Brief Role on job and tools and technology I worked with day to day activity
  • Q2. In-depth technical interview which went around 40 min. since i had 8 years of experience
  • Q3. Fully technical
  • Q4. Salary discussion and Document verification.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Keywords that I put in of the technology, tools , experience.. (I guess )

General Tips: Just stay calm. Do not show fake experience, Speak genuinely, Answer to the point and explain if you have to add on more depending on your experience. Do not be over confident. Speak start to the eyes
Skills: Communication, Problem Solving, Analytical Skills, Leadership, Presentation Skills, Decision Making Skills
Duration: 1-3 Months

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, .NET, Argus and C#.
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.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

4-6 weeks 100%
View more
Genpact Senior Software Engineer Salary
based on 398 salaries
₹11.7 L/yr - ₹24 L/yr
At par with the average Senior Software Engineer Salary in India
View more details

Genpact Senior Software Engineer Reviews and Ratings

based on 29 reviews

4.2/5

Rating in categories

3.7

Skill development

4.4

Work-life balance

3.7

Salary

4.3

Job security

4.0

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 29 Reviews and Ratings
Process Developer
38.4k salaries
unlock blur

₹2.4 L/yr - ₹7.2 L/yr

Process Associate
29.2k salaries
unlock blur

₹1.8 L/yr - ₹4.9 L/yr

Management Trainee
22.7k salaries
unlock blur

₹4.2 L/yr - ₹9 L/yr

Assistant Manager
21.6k salaries
unlock blur

₹6 L/yr - ₹13.3 L/yr

Manager
8.6k salaries
unlock blur

₹11.2 L/yr - ₹19.5 L/yr

Explore more salaries
Compare Genpact with

Accenture

3.7
Compare

Capgemini

3.7
Compare

TCS

3.5
Compare

Cognizant

3.7
Compare
write
Share an Interview