Premium Employer

i

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

Infogain Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Infogain Interview Questions and Answers

Updated 10 Jul 2025
Popular Designations

70 Interview questions

A Senior Software Engineer was asked 1mo ago
Q. What are the differences between .NET and .NET Core?
Ans. 

.NET is a framework for Windows applications, while .NET Core is a cross-platform, open-source framework for modern app development.

  • .NET is Windows-only; .NET Core supports Windows, macOS, and Linux.

  • .NET is a full framework; .NET Core is modular and lightweight.

  • .NET Core allows for side-by-side versioning, enabling multiple versions to run on the same machine.

  • .NET Core has improved performance and scalability comp...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 1mo ago
Q. What methods can be employed for optimizing stored procedures?
Ans. 

Optimizing stored procedures enhances performance, reduces resource usage, and improves maintainability in database operations.

  • 1. Use proper indexing: Ensure that the columns used in WHERE clauses are indexed to speed up data retrieval. Example: CREATE INDEX idx_column ON table(column);

  • 2. Avoid cursors: Replace cursors with set-based operations to reduce overhead. Example: Use JOINs instead of looping through reco...

View all Senior Software Engineer interview questions
A Data Engineering Analyst was asked 4mo ago
Q. What are the use cases for different types of JOIN operations?
Ans. 

Join operations in SQL combine data from multiple tables based on related columns, enhancing data analysis capabilities.

  • Inner Join: Returns records with matching values in both tables. Example: Joining 'Employees' and 'Departments' on 'DeptID'.

  • Left Join: Returns all records from the left table and matched records from the right. Example: All 'Employees' with their 'Departments', even if some don't belong to any.

  • Ri...

View all Data Engineering Analyst interview questions
A Finance Intern was asked 6mo ago
Q. What are macros in Excel?
Ans. 

Macros in Excel are automated tasks that can be created using Visual Basic for Applications (VBA) to perform repetitive actions.

  • Macros can be recorded or written manually using VBA code.

  • They can automate tasks such as formatting, data manipulation, and report generation.

  • Macros can be assigned to buttons or keyboard shortcuts for easy access.

  • They can save time and reduce errors by automating repetitive tasks.

  • Exampl...

View all Finance Intern interview questions
A Senior Software Engineer was asked 6mo ago
Q. Explain the relationship between equals() and hashCode() methods in Java (or the relevant language).
Ans. 

Equals and hashCode are crucial for object comparison and collections in Java, ensuring correct behavior in data structures.

  • Equals method checks if two objects are logically equivalent. Example: 'a.equals(b)' returns true if 'a' and 'b' are the same.

  • HashCode method returns an integer representation of an object. Example: 'a.hashCode()' provides a unique identifier for 'a'.

  • Both methods must be overridden together t...

View all Senior Software Engineer interview questions
A Data Engineer was asked 7mo ago
Q. How would you handle a toxic work culture?
Ans. 

Address toxic work culture by open communication, setting boundaries, seeking support, and considering leaving if necessary.

  • Open communication with colleagues and management about issues

  • Set boundaries to protect your mental and emotional well-being

  • Seek support from HR, a mentor, or a therapist if needed

  • Consider leaving the toxic work environment if the situation does not improve

View all Data Engineer interview questions
A Reactjs Developer was asked 7mo ago
Q. How do you integrate APIs in React?
Ans. 

Api integration in React involves fetching data from external APIs and displaying it in the application.

  • Use fetch or axios to make API calls in React components

  • Handle API responses using promises or async/await

  • Update component state with fetched data to render it on the UI

View all Reactjs Developer interview questions
Are these interview questions helpful?
An UI Developer was asked 8mo ago
Q. Do you know how to write tests in React or have any experience with Jest?
Ans. 

Yes, I have experience writing tests in React using Jest.

  • I have experience writing unit tests for React components using Jest.

  • I am familiar with testing libraries like Enzyme for React component testing.

  • I understand how to write snapshot tests to ensure UI consistency in React applications.

View all UI Developer interview questions
An UI Developer was asked 8mo ago
Q. What is Redux and how does it work behind the scenes (code flow)?
Ans. 

Redux is a predictable state container for JavaScript apps. It helps manage the state of an application in a single immutable state tree.

  • Redux stores the entire state of an application in a single immutable state tree.

  • The state tree is read-only, and changes are made by dispatching actions.

  • Reducers specify how the state changes in response to actions.

  • The store holds the state tree, allows access to state via getSt...

View all UI Developer interview questions
An UI Developer was asked 8mo ago
Q. How are you managing state in your current applications?
Ans. 

I manage state using React's useState hook and context API for global state management.

  • Using React's useState hook to manage local component state

  • Utilizing React's context API for global state management

  • Implementing Redux for complex state management scenarios

View all UI Developer interview questions

Infogain Interview Experiences

130 interviews found

Interview Questionnaire 

13 Questions

  • Q1. About the family background
  • Ans. 

    I come from a close-knit family that values education and support, fostering my passion for technology and problem-solving.

    • My parents are both educators, which instilled a love for learning in me from a young age.

    • I have a younger sister who is currently studying computer science, and we often collaborate on coding projects.

    • Family gatherings are filled with discussions about technology and innovation, encouraging me to ...

  • Answered by AI
  • Q2. About my certification .As i had mentioned a lot of certifications
  • Ans. 

    I hold several certifications that enhance my skills in software development and demonstrate my commitment to continuous learning.

    • Certified Java Developer: This certification validates my proficiency in Java programming, including object-oriented concepts and design patterns.

    • AWS Certified Solutions Architect: It showcases my ability to design and deploy scalable systems on AWS, which is crucial for cloud-based applicat...

  • Answered by AI
  • Q3. About the other offers . As i had got an offer from Infosys as well
  • Q4. Why Infogain?
  • Ans. 

    Infogain offers a dynamic and innovative work environment with opportunities for growth and learning.

    • Infogain has a strong focus on employee development and provides ample opportunities for learning and growth.

    • The company values innovation and encourages employees to think outside the box.

    • Infogain has a diverse range of clients and projects, providing exposure to a variety of industries and technologies.

    • The company has...

  • Answered by AI
  • Q5. Area of interest.Then why we need data Structures
  • Ans. 

    Data structures are essential for efficient storage and retrieval of data.

    • Data structures allow for faster access and manipulation of data.

    • They help in organizing and managing large amounts of data.

    • Examples include arrays, linked lists, trees, and graphs.

    • Without data structures, algorithms would be less efficient and more complex.

    • Data structures are used in various fields such as computer science, finance, and engineer...

  • Answered by AI
  • Q6. Out put of a written program .This was related to priority of operators?
  • Q7. A programme to check palindrome?
  • Ans. 

    A programme to check if a given string is a palindrome.

    • Create a function that takes a string as input.

    • Convert the string to lowercase and remove any non-alphanumeric characters.

    • Reverse the string and compare it to the original string.

    • If they are the same, return true. Otherwise, return false.

  • Answered by AI
  • Q8. What is the super class of Exception?
  • Ans. 

    The super class of Exception is Throwable.

    • Throwable is the root class of all exceptions in Java.

    • It has two direct subclasses: Exception and Error.

    • Exceptions are used for recoverable errors while Errors are used for unrecoverable errors.

    • All exceptions and errors inherit from Throwable.

    • Throwable provides methods like getMessage() and printStackTrace() to handle exceptions.

  • Answered by AI
  • Q9. What is Checked and Unchecked Exception.An Example of each?
  • Ans. 

    Checked and Unchecked Exceptions are types of exceptions in Java. Checked exceptions are checked at compile-time while unchecked exceptions are not.

    • Checked exceptions are those which are checked at compile-time and must be handled by the programmer using try-catch or throws keyword.

    • Examples of checked exceptions include IOException, SQLException, ClassNotFoundException.

    • Unchecked exceptions are those which are not check...

  • Answered by AI
  • Q10. Use of super and this
  • Ans. 

    super and this are used in object-oriented programming to refer to the parent class and current instance respectively.

    • super is used to call a method or constructor from the parent class

    • this is used to refer to the current instance of the class

    • super() must be the first statement in a constructor

    • this() can be used to call another constructor in the same class

  • Answered by AI
  • Q11. Can we use super and this in a single constructor?
  • Ans. 

    Yes, we can use super and this in a single constructor.

    • Using 'super' in a constructor calls the parent class constructor.

    • Using 'this' in a constructor calls another constructor in the same class.

    • We can use both 'super' and 'this' in the same constructor to call both parent and same class constructors.

    • Example: public MyClass(int x) { this(x, 0); super(); }

  • Answered by AI
  • Q12. Will protected member be inherited in subclasses in hierarchy?
  • Ans. 

    Yes, protected members are inherited in subclasses in hierarchy.

    • Protected members are accessible within the class and its subclasses.

    • They are not accessible outside the class hierarchy.

    • Subclasses can access protected members of their parent class.

    • Example: class A has a protected member x, class B extends A can access x.

    • Example: class C extends B can also access x.

  • Answered by AI
  • Q13. What is deadlock .what are the conditions of deadlock?
  • Ans. 

    Deadlock is a situation where two or more processes are unable to proceed because they are waiting for each other to release resources.

    • Deadlock occurs when two or more processes are blocked and unable to proceed.

    • It happens when each process is holding a resource and waiting for another resource to be released.

    • There are four necessary conditions for deadlock: mutual exclusion, hold and wait, no preemption, and circular ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: A.Online Test -60 questions in 75 minutes.
Test consists three different sections
1.Quantitative Aptitude and reasoning -This section has 30 questions which is a good mixture of reasoning and QA .These questions only requires a good analytical ability and few basic concepts of maths.I can say these questions was a scoring portion and could be solved in atmost 1 min per question.
2.General English -This section has 10 questions few were from general uses of grammar and 2 fill in the blanks and 1-2 vocabulary (antonynm and Synonym)3.Technical -The best thing about the infogain recruitment process was technical.This section was bit harder compared to the earlier two.Apart from hardness this section may play a vital role in your selection if you are good at basic concepts of Computer Science.This section has 20 question .This section has the questions from OOPS,C++,C,DBMS.Most of the questions were from these areas.Apart from that 1 question was from Software engineering/Project management.
Tips: Prepare your basics for technical.
Duration: 75 minutes
Total Questions: 60

Round: Interview
Experience: Very good experience ...
Tips: Be honest and prepare the smart answers of traditional questions.Research about the company. Prepare well about your achievements.

Round: Interview
Experience: This was a really interesting round for me.He asked first that How R u. That question and smile gave me a lot energy.In technical round also he again asked that why infogain.As i had the real zeal to work with this organisation so I have made a clear and strong point in front of interviewer.Then he saw my resume and asked about the subjects I have learned in B.Tech .Then out of those he asked about CN.I replied that I know CN but my area of interest .Listening this the interviewer started bombarding the questions from Java.
Tips: Basics are the only necessity for clearing this round.

Round: final result declaration
Experience: yahoooooo.....
Tips: Be sure if you have performed well in interview and maintained a good communication with the interviewer.

General Tips: Know yourself well beforehand.
Skills: Communication Skiill, Technical Skills, Behavioural skills, Expressiveness
College Name: S.K.I.T ,Jaipur
Motivation: A good platform for freshers to start the carrier in IT field.
Funny Moments: One logical question interviewer asked -
What u will do if some one steals a wheel of your car and you don't have any extra emergency wheel what you will do?
I started applying logic and every time interviewer gives the new constrain. That made a lot of fun

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. There were two technical and one HR round. Question were scenario based on sql and .net applications.
  • Q2. Replication of Databases
  • Ans. 

    Replication of databases involves copying and maintaining multiple copies of the same database for redundancy and fault tolerance.

    • Replication helps in ensuring high availability and fault tolerance by having multiple copies of the same data.

    • There are different types of replication such as master-slave replication, master-master replication, and multi-master replication.

    • Replication can be synchronous or asynchronous, wi...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. I was not selected for round two
  • Q2. I am not aware of question in 2nd technical
Round 3 - HR 

(1 Question)

  • Q1. I was not selected for HR round
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Accounting principles
  • Q2. Balance sheet questions
Round 2 - Technical 

(2 Questions)

  • Q1. What is macros in excel
  • Ans. 

    Macros in Excel are automated tasks that can be created using Visual Basic for Applications (VBA) to perform repetitive actions.

    • Macros can be recorded or written manually using VBA code.

    • They can automate tasks such as formatting, data manipulation, and report generation.

    • Macros can be assigned to buttons or keyboard shortcuts for easy access.

    • They can save time and reduce errors by automating repetitive tasks.

    • Example: Cr...

  • Answered by AI
  • Q2. Merging of cells in excel
  • Ans. 

    Merging cells in Excel allows you to combine multiple cells into one larger cell.

    • Select the cells you want to merge

    • Right click and select 'Merge Cells' from the dropdown menu

    • The content of the upper-left cell will be kept, while the rest of the cells' content will be deleted

    • Merged cells cannot be unmerged, so be careful when merging

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Strengths and weaknesses
  • Q2. Case based questions asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Reach out to HR on linkedin
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2022. 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 

(2 Questions)

  • Q1. Normal questions
  • Q2. Resume n product knowledge
Round 3 - HR 

(2 Questions)

  • Q1. Just prepared normally nothing speacial
  • Q2. Cv related
Round 4 - Technical 

(1 Question)

  • Q1. Product knowledge

Interview Preparation Tips

Topics to prepare for Infogain Development Consultant interview:
  • PoS
Interview preparation tips for other job seekers - The company is good but the job is not secure here. Management is the worst part.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Hashmap internal working
  • Q2. Equals and hashcode
  • Ans. 

    Equals and hashCode are crucial for object comparison and collections in Java, ensuring correct behavior in data structures.

    • Equals method checks if two objects are logically equivalent. Example: 'a.equals(b)' returns true if 'a' and 'b' are the same.

    • HashCode method returns an integer representation of an object. Example: 'a.hashCode()' provides a unique identifier for 'a'.

    • Both methods must be overridden together to mai...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Microservice design pattern
  • Ans. 

    Microservice design pattern focuses on breaking down a large application into smaller, independent services.

    • Each microservice is responsible for a specific function or feature

    • Communication between microservices is typically done through APIs

    • Microservices can be developed, deployed, and scaled independently

    • Examples: Netflix, Amazon, Uber

  • Answered by AI
  • Q2. Springboot annotation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. React lifecycle methods
  • Q2. Server side rendering
  • Q3. Api integration in react
  • Ans. 

    Api integration in React involves fetching data from external APIs and displaying it in the application.

    • Use fetch or axios to make API calls in React components

    • Handle API responses using promises or async/await

    • Update component state with fetched data to render it on the UI

  • Answered by AI
  • Q4. Custom Pagination
Round 2 - Coding Test 

Custom hooks, redux action, reducer, middleware, array values and count example

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

JUST BASIC CODING WITH MCQ AND MEETLE PLATFORM

Round 2 - Technical 

(1 Question)

  • Q1. JUST BASICS LIKE SQL,PYTHON MAINLY OOPS AND BASIC CODE LIKE PALINDROME
Round 3 - HR 

(1 Question)

  • Q1. LIKE MINDTEASING QUESTIONS SITUATION BASED

Interview Preparation Tips

Interview preparation tips for other job seekers - JUST BE CONFIDENT THAT U WILL GET JOB AND ANSWER WITH CONFIDENCE

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 28 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Based on SQL , statistics , python , cognitive

Round 2 - Technical 

(2 Questions)

  • Q1. Based on AI/Ml and based on cv
  • Q2. Based on projects
Round 3 - HR 

(2 Questions)

  • Q1. How to handle toxic work culture?
  • Ans. 

    Address toxic work culture by open communication, setting boundaries, seeking support, and considering leaving if necessary.

    • Open communication with colleagues and management about issues

    • Set boundaries to protect your mental and emotional well-being

    • Seek support from HR, a mentor, or a therapist if needed

    • Consider leaving the toxic work environment if the situation does not improve

  • Answered by AI
  • Q2. 5 strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in interviews and try to calm ur mind!
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. Basic Swift & SwiftUI questions.
  • Q2. Explain the architectures used and developement approch of previous project
  • Q3. What are the different ways to share the test build with testers?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. CSS: Create a triangle using only CSS
  • Ans. 

    Use CSS to create a triangle shape

    • Use border properties to create a triangle shape

    • Set the width and height of the element to 0

    • Use borders of different colors to create the triangle shape

  • Answered by AI
  • Q2. HTML: Change the CSS of a parent element by accessing only it's child element
  • Ans. 

    Use CSS pseudo-class :hover to change parent element's CSS when child element is hovered

    • Use the CSS pseudo-class :hover to target the parent element when the child element is hovered

    • Example: .parent:hover .child { /* CSS styles */ }

  • Answered by AI
  • Q3. JS: create a calculator function. everytime you call it, it should print the next elem in sequence (condition: shouldn't pass any param) - 5,11,29,83
  • Ans. 

    Create a calculator function that prints the next element in sequence each time it is called.

    • Create a function that keeps track of the current number in the sequence

    • Each time the function is called, calculate the next number in the sequence based on the previous number

    • Print the next number in the sequence each time the function is called

  • Answered by AI
  • Q4. React: create a context and provide it such that the language will be changed on a button click
  • Ans. 

    Create a context in React to change language on button click

    • Create a context using createContext() method

    • Provide a state for language and a function to change it

    • Wrap the components that need access to language context with Context.Provider

    • Use useContext hook to access language context in components

    • Update language state on button click

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very informative interview. It was conducted for a specific role to optimise an app. I couldn't crack it, but very happy with the discussion

Skills evaluated in this interview

SAS Developer Interview Questions & Answers

user image Anonymous

posted on 18 Mar 2025

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Basic SAS question
  • Q2. Basic Python Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I cleared two technical interviews and was shortlisted for the third round. They asked me to come to their office for the interview. I traveled from my hometown to their office and attended the interview. During the interview, they asked me about my ratings on technologies like SQL, Python, and SAS, as well as my 10th, 12th, and graduation percentages. After a few days, I called them for feedback, and they simply said the process is on hold. I feel like I wasted my time. They should have asked me about my percentages and technical ratings before shortlisting my resume.

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Infogain?
Ask anonymously on communities.

Infogain Interview FAQs

How many rounds are there in Infogain interview?
Infogain interview process usually has 2-3 rounds. The most common rounds in the Infogain interview process are Technical, HR and Resume Shortlist.
How to prepare for Infogain 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 Infogain. The most common topics and skills that interviewers at Infogain expect are SQL, Javascript, Agile, Python and Troubleshooting.
What are the top questions asked in Infogain interview?

Some of the top questions asked at the Infogain interview -

  1. Which deployment strategy have you us...read more
  2. What are all the devops tools you have used in your application deployme...read more
  3. What is deadlock .what are the conditions of deadlo...read more
What are the most common questions asked in Infogain HR round?

The most common HR questions asked in Infogain interview are -

  1. What are your strengths and weakness...read more
  2. What is your family backgrou...read more
  3. Where do you see yourself in 5 yea...read more
How long is the Infogain interview process?

The duration of Infogain interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 106 interview experiences

Difficulty level

Easy 13%
Moderate 77%
Hard 10%

Duration

Less than 2 weeks 83%
2-4 weeks 16%
More than 8 weeks 2%
View more
Join Infogain Meaningful work, meaningful life

Interview Questions from Similar Companies

DXC Technology Interview Questions
3.6
 • 842 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
NTT Data Interview Questions
3.8
 • 662 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
GlobalLogic Interview Questions
3.6
 • 629 Interviews
EPAM Systems Interview Questions
3.7
 • 570 Interviews
UST Interview Questions
3.8
 • 544 Interviews
CGI Group Interview Questions
4.0
 • 524 Interviews
View all

Infogain Reviews and Ratings

based on 1.2k reviews

3.6/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

3.2

Salary

3.4

Job security

3.5

Company culture

2.8

Promotions

3.4

Work satisfaction

Explore 1.2k Reviews and Ratings
SSIS_Data Engineering

Noida,

Bangalore / Bengaluru

+1

8-11 Yrs

Not Disclosed

Mac Support Engineer

Noida

3-5 Yrs

Not Disclosed

Technical Architect (Senior)

Bangalore / Bengaluru

8-10 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.3k salaries
unlock blur

₹4 L/yr - ₹10.8 L/yr

Development Consultant
829 salaries
unlock blur

₹8.7 L/yr - ₹16 L/yr

Technical Lead
623 salaries
unlock blur

₹17.9 L/yr - ₹33 L/yr

Consultant
505 salaries
unlock blur

₹8.5 L/yr - ₹15 L/yr

Senior Consultant
363 salaries
unlock blur

₹13 L/yr - ₹23 L/yr

Explore more salaries
Compare Infogain with

DXC Technology

3.6
Compare

Optum Global Solutions

4.0
Compare

Virtusa Consulting Services

3.7
Compare

CGI Group

4.0
Compare
write
Share an Interview