Upload Button Icon Add office photos

Genpact

Compare button icon Compare button icon Compare

Filter interviews by

Genpact Software Engineering Lead Interview Questions and Answers

Updated 23 Dec 2024

Genpact Software Engineering Lead Interview Experiences

1 interview found

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 Jun 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is list comprehension?
  • Ans. 

    List comprehension is a concise way to create lists in programming languages like Python.

    • List comprehension is a compact way to generate lists by applying an expression to each item in a sequence.

    • It is commonly used in Python and allows for more readable and efficient code.

    • Example: squares = [x**2 for x in range(10)] will create a list of squares of numbers from 0 to 9.

  • Answered by AI
  • Q2. Difference between list and tuple.
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot.

    • List uses square brackets [], tuple uses parentheses ().

    • List is used for collections of items that may change, tuple for fixed collections.

  • Answered by AI
Round 2 - Coding Test 

Coding related to list comprehension and searching an item.

Round 3 - HR 

(1 Question)

  • Q1. Company Overview and Salary discussion

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Brief about resume
  • Q2. Java collection framework , find if 2 strings are anagram, how to connect 2 DB at a time in spring, how to reloead configuration in spring framework at runtime(without application downtime)
  • Ans. 

    To check if two strings are anagrams, connect two databases in Spring, and reload configuration without downtime in Spring.

    • To check if two strings are anagrams, use Java Collection Framework to compare the characters in both strings.

    • To connect two databases in Spring, configure multiple data sources in the application context file.

    • To reload configuration in Spring without downtime, use Spring Cloud Config to externaliz

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Spring core questions
  • Q2. Java core questions
  • Q3. Spring boot core questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just learn you will be able to do it
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(16 Questions)

  • Q1. What are custom hooks in React, and what are their use cases? Additionally, can you provide an example of a custom hook that performs an API call and utilizes the retrieved data?
  • Ans. 

    Custom hooks in React are reusable functions that allow you to extract component logic into separate functions for better code organization and reusability.

    • Custom hooks are created using the 'use' prefix and can be used to share logic between components.

    • Use cases for custom hooks include fetching data from an API, handling form state, managing local storage, and more.

    • Example of a custom hook for API call: const useFetc...

  • Answered by AI
  • Q2. What is the difference between useMemo and useCallback in React?
  • Ans. 

    useMemo is used to memoize a value, while useCallback is used to memoize a function.

    • useMemo is used to memoize a value and recompute it only when its dependencies change.

    • useCallback is used to memoize a callback function and prevent unnecessary re-renders.

    • Example: useMemo can be used to memoize the result of a complex computation, while useCallback can be used to memoize an event handler function.

  • Answered by AI
  • Q3. What is the difference between class-based components and functional components in React?
  • Ans. 

    Class-based components use ES6 classes and have lifecycle methods, while functional components are simpler and use functions.

    • Class-based components use ES6 classes to create components, while functional components are created using functions.

    • Class-based components have lifecycle methods like componentDidMount and componentDidUpdate, while functional components do not.

    • Functional components are simpler and more lightweig...

  • Answered by AI
  • Q4. How can you implement the lifecycle of a React component in a functional component?
  • Ans. 

    Implementing the lifecycle of a React component in a functional component

    • Use the useEffect hook to replicate lifecycle methods like componentDidMount, componentDidUpdate, and componentWillUnmount

    • Pass an empty array as the second argument to useEffect to mimic componentDidMount

    • Pass a variable or state as the second argument to useEffect to mimic componentDidUpdate

    • Return a cleanup function inside useEffect to mimic compo

  • Answered by AI
  • Q5. What are the various state management techniques available in React?
  • Ans. 

    Various state management techniques in React include Context API, Redux, and local state.

    • Context API: React's built-in solution for passing data through the component tree without having to pass props down manually at every level.

    • Redux: A popular state management library for React applications, allowing for a centralized store to manage application state.

    • Local state: Managing state within individual components using us

  • Answered by AI
  • Q6. What is the architecture of Redux, and what purposes do middlewares serve within it?
  • Ans. 

    Redux is a predictable state container for JavaScript apps. Middlewares are functions that intercept actions before they reach the reducer.

    • Redux follows a unidirectional data flow architecture.

    • Middlewares in Redux are functions that can intercept, modify, or dispatch actions.

    • Common use cases for middlewares include logging, asynchronous API calls, and handling side effects.

    • Examples of popular Redux middlewares are Redu...

  • Answered by AI
  • Q7. What is hoisting in JavaScript?
  • Ans. 

    Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their initializations.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q8. What is event bubbling in JavaScript?
  • Ans. 

    Event bubbling is the propagation of events from the target element up through its ancestors in the DOM tree.

    • Events triggered on a child element will 'bubble up' and trigger on parent elements.

    • Event listeners can be attached to parent elements to handle events from multiple child elements.

    • Stopping event propagation can be done using event.stopPropagation() or event.stopImmediatePropagation().

  • Answered by AI
  • Q9. What are block scope and function scope in JavaScript?
  • Ans. 

    Block scope and function scope are two types of scopes in JavaScript that determine the visibility and accessibility of variables.

    • Block scope refers to the visibility of variables within a block of code enclosed by curly braces. Variables declared with 'let' and 'const' have block scope.

    • Function scope refers to the visibility of variables within a function. Variables declared with 'var' have function scope.

    • Variables de...

  • Answered by AI
  • Q10. Have you had experience working with semantic tags in HTML?
  • Ans. 

    Yes, I have experience working with semantic tags in HTML.

    • Used semantic tags like <header>, <nav>, <main>, <section>, <article>, <aside>, <footer> for better structure and SEO.

    • Understand the importance of using semantic tags for accessibility and search engine optimization.

    • Semantic tags help in organizing content and making it more readable for developers and browsers.

  • Answered by AI
  • Q11. What are the various methods for creating an object in JavaScript?
  • Ans. 

    Various methods for creating an object in JavaScript include object literals, constructor functions, ES6 classes, and Object.create() method.

    • Object literals: var obj = { key: value };

    • Constructor functions: function ObjectName() { this.key = value; } var obj = new ObjectName();

    • ES6 classes: class ClassName { constructor() { this.key = value; } } var obj = new ClassName();

    • Object.create() method: var obj = Object.create(pr

  • Answered by AI
  • Q12. What are the differences between shallow copy and deep copy in JavaScript?
  • Ans. 

    Shallow copy only copies the references of nested objects, while deep copy creates new copies of nested objects.

    • Shallow copy creates a new object but does not create copies of nested objects, only copies their references.

    • Deep copy creates a new object and also creates new copies of all nested objects.

    • Shallow copy can be achieved using Object.assign() or spread operator, while deep copy can be achieved using JSON.parse(

  • Answered by AI
  • Q13. What will be the output of the following JavaScript code fragment: `const a; function test() { console.log(a); }; test();`?
  • Ans. 

    The code will throw an error because 'a' is declared but not initialized.

    • The code will result in a ReferenceError because 'a' is declared but not assigned a value.

    • Variables declared with 'const' must be initialized at the time of declaration.

    • Initializing 'a' with a value before calling test() will prevent the error.

  • Answered by AI
  • Q14. How can you use CSS to arrange elements in a row and column layout?
  • Ans. 

    CSS can be used to arrange elements in a row and column layout using flexbox or grid layout properties.

    • Use display: flex; for a row layout and display: flex; flex-direction: column; for a column layout

    • Use justify-content and align-items properties to align items in the main axis and cross axis respectively

    • For grid layout, use display: grid; and grid-template-columns or grid-template-rows to define the layout

  • Answered by AI
  • Q15. Have you utilized CSS preprocessors, and if so, which ones?
  • Ans. 

    Yes, I have utilized CSS preprocessors such as SASS and LESS.

    • I have experience using SASS to streamline my CSS workflow by utilizing variables, mixins, and nesting.

    • I have also worked with LESS to improve code organization and maintainability through features like variables and functions.

  • Answered by AI
  • Q16. If I have assigned different colors to an ID and a class and applied both to the same element, which color will be applied based on CSS specificity precedence?
  • Ans. 

    The color applied will be based on the specificity of the selector, with ID having higher specificity than class.

    • ID has higher specificity than class in CSS

    • Color applied will be based on the selector with higher specificity

    • Example: If ID selector has color red and class selector has color blue, the color applied will be red

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cognizant Senior Software Engineer interview:
  • Javascript
  • React.Js
  • HTML
  • CSS
Interview preparation tips for other job seekers - Possessing a deep understanding of JavaScript and React is essential. Interviewers may engage in mind games with candidates; therefore, we should remain calm and focused solely on the questions. Additionally, we need to be confident in our answers; otherwise, they may respond with doubt, asking, "Is that so?"

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Interview Questions 

(15 Questions)

  • Q1. Explain the difference between ArrayList and LinkedList in Java. ArrayList is implemented as a dynamic array, while LinkedList is a doubly linked list. ArrayList provides fast random access (O(1) complexit...
  • Ans. 

    ArrayList is preferred for frequent retrieval operations due to fast random access, while LinkedList is suitable for frequent insertions/deletions.

    • Use ArrayList when frequent retrieval operations are required, such as searching for elements in a large collection.

    • Choose LinkedList when frequent insertions/deletions are needed, like maintaining a queue or stack.

    • Consider memory overhead and performance trade-offs when dec...

  • Answered by AI
  • Q2. What are the advantages and disadvantages of using Java’s synchronized keyword for thread synchronization? The synchronized keyword ensures that only one thread can access a block of code at a time. It pre...
  • Ans. 

    ReentrantLock should be used instead of synchronized when more flexibility and control over locking mechanisms is needed.

    • Use ReentrantLock when you need to implement custom locking strategies or require advanced features like tryLock() and lockInterruptibly().

    • ReentrantLock supports fair locking mechanisms, ensuring that threads acquire the lock in the order they requested it.

    • Explicit unlocking in ReentrantLock reduces ...

  • Answered by AI
  • Q3. What is the difference between == and .equals() in Java? == checks for reference equality, meaning it compares memory addresses. equals() checks for value equality, which can be overridden in user-defined ...
  • Ans. 

    In Java, == checks for reference equality while equals() checks for value equality. Misuse of == can lead to logical errors.

    • Override equals() when you want to compare the values of objects instead of their references

    • Override hashCode() alongside equals() to ensure proper functioning in collections like HashMap

    • Consider implementing Comparable interface for natural ordering in collections

  • Answered by AI
  • Q4. How does the Java garbage collector work? Garbage collection in Java automatically reclaims memory occupied by unused objects. The JVM has different types of GC algorithms, including Serial, Parallel, CMS,...
  • Ans. 

    Garbage collection in Java automatically reclaims memory occupied by unused objects using different algorithms and memory regions.

    • Java garbage collector automatically reclaims memory from unused objects

    • Different types of GC algorithms in JVM: Serial, Parallel, CMS, G1 GC

    • Objects managed in Young Generation, Old Generation, and PermGen/Metaspace

    • Minor GC cleans up short-lived objects in Young Generation

    • Major GC (Full GC) ...

  • Answered by AI
  • Q5. What are the main features of Java 8? Java 8 introduced lambda expressions, enabling functional-style programming. The Stream API allows efficient data processing with map, filter, and reduce operations. D...
  • Ans. 

    Lambda expressions in Java 8 improve readability and maintainability by enabling concise and functional-style programming.

    • Lambda expressions allow writing more compact code by reducing boilerplate code.

    • They enable passing behavior as arguments to methods, making code more modular and flexible.

    • Example: (a, b) -> a + b is a lambda expression that adds two numbers.

  • Answered by AI
  • Q6. Describe the differences between checked and unchecked exceptions in Java. Checked exceptions must be handled using try-catch or declared with throws. Unchecked exceptions (RuntimeException and its subclas...
  • Ans. 

    Checked exceptions must be handled explicitly, while unchecked exceptions do not require explicit handling.

    • Use custom exceptions when you want to create your own exception types to handle specific scenarios.

    • Custom exceptions can be either checked or unchecked, depending on whether you want to enforce handling or not.

    • For example, a custom InvalidInputException could be a checked exception if you want to ensure it is cau...

  • Answered by AI
  • Q7. What is the Java Memory Model, and how does it affect multithreading and synchronization? The Java Memory Model (JMM) defines how threads interact with shared memory. It ensures visibility and ordering of ...
  • Ans. 

    The Java Memory Model defines how threads interact with shared memory, ensuring visibility and ordering of variable updates in a concurrent environment.

    • Volatile keyword ensures changes to a variable are always visible to all threads.

    • Synchronized keyword provides mutual exclusion and visibility guarantees.

    • Reordering optimizations by the compiler or CPU can lead to unexpected behavior.

    • Happens-before relationship determin...

  • Answered by AI
  • Q8. Can you explain the difference between method overloading and method overriding in Java? Method overloading allows multiple methods with the same name but different parameters. It occurs within the same cl...
  • Ans. 

    Method overloading allows multiple methods with the same name but different parameters, while method overriding allows a subclass to provide a different implementation of a parent method.

    • Use method overloading when you want to provide multiple ways to call a method with different parameters.

    • Use method overriding when you want to provide a specific implementation of a method in a subclass.

    • Example of method overloading: ...

  • Answered by AI
  • Q9. What are functional interfaces in Java, and how do they work with lambda expressions? A functional interface is an interface with exactly one abstract method. Examples include Runnable, Callable, Predicate...
  • Ans. 

    Functional interfaces in Java have exactly one abstract method and work with lambda expressions for concise implementation.

    • Functional interfaces have exactly one abstract method, such as Runnable, Callable, Predicate, and Function.

    • Lambda expressions provide a concise way to implement functional interfaces.

    • Default methods in interfaces help in evolving APIs without breaking backward compatibility.

    • Method references (::) ...

  • Answered by AI
  • Q10. What is a Java Stream, and how does it differ from an Iterator? Streams enable functional-style operations on collections with lazy evaluation. Unlike Iterators, Streams support declarative operations lik...
  • Ans. 

    Java Streams enable functional-style operations on collections with lazy evaluation, unlike Iterators.

    • Parallel streams can improve performance by utilizing multiple threads, but may introduce overhead due to thread management.

    • Care must be taken to ensure thread safety when using parallel streams in a multi-threaded environment.

    • Parallel streams are suitable for operations that can be easily parallelized, such as map and...

  • Answered by AI
  • Q11. Explain the concept of immutability in Java and its advantages. An immutable object cannot be changed after it is created. The String class is immutable, meaning modifications create new objects. Immutabl...
  • Ans. 

    Immutability in Java prevents objects from being changed after creation, promoting thread safety and preventing unintended side effects.

    • Immutable objects cannot be modified after creation, promoting thread safety

    • String class in Java is immutable, modifications create new objects

    • Use final fields and avoid setters to create immutable classes

    • Collections can be made immutable using Collections.unmodifiableList()

    • Immutabilit...

  • Answered by AI
  • Q12. What is the difference between final, finally, and finalize in Java? final is a keyword used to declare constants, prevent method overriding, or inheritance. finally is a block that executes after a try-c...
  • Ans. 

    final, finally, and finalize have different meanings in Java. final is for constants, finally for cleanup, and finalize for garbage collection.

    • final is used for constants, preventing method overriding, and inheritance

    • finally is used for cleanup actions after a try-catch block

    • finalize() is called by the garbage collector before object deletion

    • Alternatives to finalize() for resource management include using try-with-reso...

  • Answered by AI
  • Q13. Explain the Singleton design pattern in Java. Singleton ensures that only one instance of a class exists in the JVM. It is useful for managing shared resources like database connections. A simple implemen...
  • Ans. 

    Singleton design pattern ensures only one instance of a class exists in the JVM, useful for managing shared resources like database connections.

    • Avoid using Singleton when multiple instances of a class are required.

    • Avoid Singleton for classes that are not thread-safe.

    • Avoid Singleton for classes that need to be easily mockable for testing purposes.

  • Answered by AI
  • Q14. What are Java annotations, and how are they used in frameworks like Spring? Annotations provide metadata to classes, methods, and fields. @Override, @Deprecated, and @SuppressWarnings are common built-in ...
  • Ans. 

    Java annotations provide metadata to classes, methods, and fields, improving code readability and maintainability.

    • Annotations like @Component, @Service, and @Autowired in Spring help with dependency injection

    • Annotations reduce boilerplate code compared to XML configurations

    • Custom annotations can be created using @interface

    • Reflection APIs allow reading annotation metadata dynamically

    • Annotations like @Transactional simpl

  • Answered by AI
  • Q15. How do Java Streams handle parallel processing, and what are its pitfalls? Parallel streams divide data into multiple threads for faster processing. The ForkJoin framework handles parallel execution inter...
  • Ans. 

    Java Streams handle parallel processing by dividing data into multiple threads using the ForkJoin framework. Pitfalls include race conditions, performance issues with small datasets, and debugging challenges.

    • Parallel streams divide data into multiple threads for faster processing

    • ForkJoin framework handles parallel execution internally

    • Useful for CPU-intensive tasks but may not improve performance for small datasets

    • Share...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Technical questions regarding Salesforce
  • Q2. Technical questions regarding Salesforce
Round 2 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - No hike in HCL in all fiscal year
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. List down Java 8 features and use case
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, and functional interfaces.

    • Lambda expressions: Allow for more concise and readable code by enabling functional programming.

    • Streams: Provide a way to work with collections of objects in a more functional style.

    • Functional interfaces: Interfaces with a single abstract method, used to enable lambda expressions.

    • Optional class: Helps to avoid null p...

  • Answered by AI
  • Q2. List down Spring boot annotation used
  • Ans. 

    Spring boot annotations are used to simplify the development process by providing metadata to the Spring framework.

    • 1. @SpringBootApplication - Main annotation to indicate the main class of a Spring Boot application.

    • 2. @RestController - Annotation for RESTful web services.

    • 3. @Autowired - Dependency injection annotation.

    • 4. @GetMapping, @PostMapping, @PutMapping, @DeleteMapping - Annotations for mapping HTTP requests to c...

  • Answered by AI
  • Q3. Difference between String builder and String Buffer
  • Ans. 

    String Builder is not synchronized and faster, while String Buffer is synchronized and slower.

    • String Builder is not thread-safe, while String Buffer is thread-safe.

    • String Builder is faster due to lack of synchronization, while String Buffer is slower due to synchronization.

    • String Builder is recommended for single-threaded operations, while String Buffer is recommended for multi-threaded operations.

  • Answered by AI
  • Q4. What is String pool
  • Ans. 

    String pool is a storage area in memory where strings are stored to optimize memory usage by reusing common strings.

    • String pool helps in reducing memory usage by storing only one copy of each unique string.

    • Strings created using double quotes are stored in the string pool.

    • Strings created using new keyword are not stored in the string pool.

  • Answered by AI
  • Q5. Number of memory type have. like heap memory , stack
  • Ans. 

    There are two main types of memory in a computer system: stack memory and heap memory.

    • Stack memory is used for static memory allocation and is managed by the compiler. It is typically faster but limited in size.

    • Heap memory is used for dynamic memory allocation and is managed by the programmer. It is slower but has a larger size.

    • Examples: C programming language uses stack memory for function calls and heap memory for dy

  • Answered by AI

Interview Preparation Tips

Topics to prepare for IBM Senior Software Engineer interview:
  • Collections
  • java 8
  • Spring Boot
  • tsl
  • SSL
  • OOPS
  • String pool
  • Heap memory
  • Strig builder
  • String buffer

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. I am software engineering fresher
  • Q2. Meny Job my roll
  • Q3. How many selary
Round 2 - HR 

(1 Question)

  • Q1. How many questions
Round 3 - Technical 

(1 Question)

  • Q1. Many rounds in next round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Asked about technical expertise and topic related question
  • Q2. Notice period and salary discussion
Round 2 - Technical 

(2 Questions)

  • Q1. Technical in depth
  • Q2. Salary discussion
Round 3 - HR 

(1 Question)

  • Q1. Notice period and salary discussion
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was an aptitute round and 2 coding questions was there

Round 2 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. We had discussion on projects than mentioned in my resume
  • Q3. Then he moved to DSA question in which he told to how you will insert node in doubly linked list ,I answered all correctly he appreciated me also but after 5 min one person came and told you can go . I was...

Interview Preparation Tips

Interview preparation tips for other job seekers - try to give interview as early as possible prepare basic dsa and projects

Genpact Interview FAQs

How many rounds are there in Genpact Software Engineering Lead interview?
Genpact interview process usually has 3 rounds. The most common rounds in the Genpact interview process are Technical, Coding Test and HR.
What are the top questions asked in Genpact Software Engineering Lead interview?

Some of the top questions asked at the Genpact Software Engineering Lead interview -

  1. What is list comprehensi...read more
  2. Difference between list and tup...read more

Tell us how to improve this page.

Genpact Software Engineering Lead Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
DXC Technology Interview Questions
3.7
 • 795 Interviews
View all
Process Developer
36.3k salaries
unlock blur

₹1 L/yr - ₹6.8 L/yr

Process Associate
28.1k salaries
unlock blur

₹0.9 L/yr - ₹6.5 L/yr

Assistant Manager
19.9k salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Management Trainee
19.4k salaries
unlock blur

₹1.6 L/yr - ₹8.5 L/yr

Manager
7.4k salaries
unlock blur

₹5.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.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview