Upload Button Icon Add office photos
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

Compare button icon Compare button icon Compare

Filter interviews by

Infogain Interview Questions, Process, and Tips

Updated 20 Jan 2025

Top Infogain Interview Questions and Answers

View all 68 questions

Infogain Interview Experiences

Popular Designations

119 interviews found

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

I applied via Referral and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Explain redux thunk
  • Ans. 

    Redux Thunk is a middleware that allows asynchronous actions to be dispatched in Redux.

    • Redux Thunk is a middleware that extends the Redux store's abilities.

    • It allows actions to return functions instead of plain objects.

    • These functions can perform asynchronous operations and dispatch actions when needed.

    • Thunk functions have access to the store's dispatch and getState methods.

    • Example: dispatching an asynchronous action t

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. React middleware

Skills evaluated in this interview

Top Infogain Senior Software Engineer Interview Questions and Answers

Q1. 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
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

Team Lead Interview Questions & Answers

user image Anonymous

posted on 5 Oct 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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. Scrum events, agile methodology, safe agile, jira
Round 3 - Technical 

(1 Question)

  • Q1. Safe agile, project management, impediments handling

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)

Software Developer Interview Questions & Answers

user image Mahaveer Rajabhau Kalegore

posted on 6 Dec 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. String immutable
  • Q2. Concurrent hashMap working
  • Ans. 

    ConcurrentHashMap is a thread-safe implementation of the Map interface in Java.

    • ConcurrentHashMap allows multiple threads to access and modify the map concurrently.

    • It achieves thread-safety by dividing the map into segments, allowing concurrent access to different segments.

    • Each segment acts as an independent hash table, reducing contention between threads.

    • ConcurrentHashMap provides atomic operations like putIfAbsent(), ...

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Technical knowledge check -
  • Q2. POS and PC and S/H Related
  • Q3. Profile job exactly job role
Round 2 - One-on-one 

(3 Questions)

  • Q1. They will check how much you can work and work
  • Q2. 24/7 availability
  • Q3. Your experience on tech support and team handling

Development Consultant Interview Questions asked at other Companies

Q1. write a program to reverse a sentence Input: I'm the boss output: boss the I'm
View answer (3)

Infogain interview questions for popular designations

 Software Engineer

 (11)

 Development Consultant

 (10)

 Senior Software Engineer

 (8)

 Software Developer

 (7)

 Software Engineer Trainee

 (6)

 Consultant Developer

 (4)

 Consultant

 (3)

 Data Engineer

 (3)

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

I applied via Naukri.com and was interviewed in Jun 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Details about Projects worked on and coding
Round 3 - One-on-one 

(1 Question)

  • Q1. Detailed projects explanation , conceptual questions about ml DL NLP tensorflow

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of ArrayYou have been given an array/list ‘arr’ of length ‘N’, which contains single digit elements at every index. Your task is to return the sum of all elements of the array. But the final sum should also be a single digit. To... read more
View answer (2)

Get interview-ready with Top Infogain Interview Questions

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Collection Related
  • Q2. Cursor Related Exmples

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)

UI Developer Interview Questions & Answers

user image Anonymous

posted on 10 Nov 2024

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

I applied via Recruitment Consulltant and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is React and how it is different from Angular and Vue ?
  • Ans. 

    React is a JavaScript library for building user interfaces. It is different from Angular and Vue in terms of architecture, data binding, and learning curve.

    • React is a library, while Angular and Vue are frameworks.

    • React uses a virtual DOM for better performance, while Angular and Vue use a real DOM.

    • React follows a unidirectional data flow, while Angular and Vue use bidirectional data binding.

    • React has a smaller learning...

  • Answered by AI
  • Q2. What is Redux and how it works behind the scene (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 getState()...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

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

  • Answered by AI
  • Q2. Do you know how to write tests in React or have any idea about 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.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always prepare basics and fundamentals before appearing in any interview. Also brush up all the latest updates of the tech for which you are going to give interview

Skills evaluated in this interview

UI Developer Interview Questions asked at other Companies

Q1. Create 10 no. of Checkboxes in javascript and on-checked checkboxes count should be show at below. as you will un-check the checkbox count should also change. so means to say checked checkbox count should be print.
View answer (1)

Regus Interview Questions & Answers

user image Anonymous

posted on 15 Feb 2023

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

I applied via Walk-in and was interviewed in Jan 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - HR 

(4 Questions)

  • Q1. Just about education and experience
  • Q2. Only she gave a project and told to give money for the job after typing i dint get my payment, we rechecked the errors and it was a hard task
  • Q3. Nothinggg it's a worst to provide me the job without any communication
  • Q4. If their is noo questions what to answer worst infogain as a regus
Round 3 - HR 

(5 Questions)

  • Q1. Sorry their was no rounds first. And last but not the least
  • Q2. What are business ethics
  • Ans. 

    Business ethics are principles and values that guide the behavior of individuals and organizations in the business world.

    • Business ethics involve honesty, integrity, fairness, and respect for others.

    • They also include social responsibility, sustainability, and compliance with laws and regulations.

    • Examples of ethical dilemmas in business include conflicts of interest, bribery, and discrimination.

    • Adhering to ethical princi...

  • Answered by AI
  • Q3. Why I want the job and for what is the work experience
  • Q4. Is am fresher or i had work experience have to pay for it
  • Q5. What are bussiness ethics and the job offer was given

Interview Preparation Tips

Topics to prepare for Infogain Regus interview:
  • The courses u like to work in
Interview preparation tips for other job seekers - Worst experience as freshers and never expect salary in return we should take the job by money horrible company all
Are frauds
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Dec 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Experience based questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Client round interview
Round 4 - One-on-one 

(1 Question)

  • Q1. Aptitude round interview
Round 5 - HR 

(1 Question)

  • Q1. Documents formalities
Round 6 - HR 

(1 Question)

  • Q1. Offer release compensation

Interview Preparation Tips

Interview preparation tips for other job seekers - Have confidence, speak truth'

Senior Project Manager Interview Questions asked at other Companies

Q1. DESIGIN PROCEDURE :- DLC thickness 150mm. 1:- use M15 grade concrete,max aggregate cement ratio 12:1 2:-The minimum cement content 150kg per cum. If flayash is more than >20% the mini.mum cement content. 120kg pet cum 3:- The 5 no sample... read more
View answer (3)

Front end Developer Interview Questions & Answers

user image Khwaja Ajharuddin

posted on 10 Jan 2025

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

I applied via Naukri.com and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

JavaScript program regarding string array and objects

Round 2 - Coding Test 

Angular core concepts implementations like authguard and api call, interceptor

Round 3 - One-on-one 

(2 Questions)

  • Q1. Why should we hire you
  • Q2. What you think about us

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing ArrayYou have been given an integer array/list 'ARR' of size 'N'. Write a solution to check if it could become non-decreasing by modifying at most 1 element. We define an array as non-decreasing, if ARR[i] <= ARR[i + 1] ho... read more
View answer (6)

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

Infogain Interview Process

based on 92 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
KPIT Technologies Interview Questions
3.4
 • 294 Interviews
CitiusTech Interview Questions
3.4
 • 268 Interviews
View all

Infogain Reviews and Ratings

based on 1.1k reviews

3.6/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

3.2

Salary

3.4

Job security

3.5

Company culture

2.8

Promotions

3.4

Work satisfaction

Explore 1.1k Reviews and Ratings
Software Engineer
1.3k salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Development Consultant
809 salaries
unlock blur

₹5.5 L/yr - ₹20 L/yr

Technical Lead
611 salaries
unlock blur

₹11 L/yr - ₹38 L/yr

Consultant
462 salaries
unlock blur

₹5.5 L/yr - ₹19.4 L/yr

Senior Consultant
349 salaries
unlock blur

₹7.9 L/yr - ₹28 L/yr

Explore more salaries
Compare Infogain with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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