Premium Employer

i

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

Infosys Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Interview Questions, Process, and Tips for Experienced

Updated 25 Mar 2025

Top Infosys Interview Questions and Answers for Experienced

View all 1.4k questions

Infosys Interview Experiences for Experienced

Popular Designations

2.2k interviews found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Apr 2024.

Round 1 - Coding Test 

They were getting rude and demoralizing after every question even if i answered it. They didn't even bother asking me about myself. 1st question was what did you do in your previous job. I was giving the answer in detail as i was a senior at my previous role as an analyst. They kept interrupting me after every point to repeat it but differently. And I did it with a smile. But something was triggering them as they were sounding frustrated, probably because the interview was on a Saturday evening. Then i was asked technical questions which i answered all of them except 1, for which i gave a theoretical answer and explained that i do not have practical knowledge in the same and would love to work on myself for the same. However they started angrily saying Didn't the HR tell you that we were looking for a expert for this associate role?!
So again smilingly i asked will there be training? They said yes. And before i could ask anything else they said I'm done here bye. And cut the call. The worst interview of my life. And mind you guys I've given 3 interviews in my past before this and cracked all of them bagging good jobs in product based companies. This was a really unprofessional interview done by Infosys.

Round 2 - No response 

(1 Question)

  • Q1. Then still ghosted by them.

Associate Java Developer Interview Questions asked at other Companies

Q1. Explain How was your syllobus was done in Lockdown at College?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Boxing Unboxing
  • Q2. Abstract class and interface

Top Infosys Application Developer Interview Questions and Answers

Q1. what is @SpringbootAnnotation and what is difference between @Controller and @RestController.
View answer (1)

Application Developer Interview Questions asked at other Companies

Q1. Minimum Cost to Connect All Points Problem Statement Given an array COORDINATES representing the integer coordinates of some points on a 2D plane, determine the minimum cost required to connect all points. The cost to connect two points, (x... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Kotlin collection
  • Q2. Explain solid principle
  • Ans. 

    SOLID is a set of five design principles that help developers create more maintainable and scalable software.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects of its subclasses without...

  • Answered by AI
  • Q3. Android related

Top Infosys Senior Android Developer Interview Questions and Answers

Q1. what is Corotuine and explain builder type.
View answer (1)

Senior Android Developer Interview Questions asked at other Companies

Q1. Binary Array Sorting Problem Statement You are provided with a binary array, i.e., an array containing only 0s and 1s. Your task is to sort this binary array and return it after sorting. Input: The first line contains an integer ‘T’ denoti... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are the different app states in an iOS application?
  • Ans. 

    iOS applications have various states that manage their lifecycle, including active, inactive, background, and suspended.

    • Active: The app is in the foreground and receiving user input.

    • Inactive: The app is transitioning to or from the background, not receiving events.

    • Background: The app is running but not visible to the user, can perform limited tasks.

    • Suspended: The app is in the background but not executing code, saved i

  • Answered by AI

Top Infosys Software Developer Interview Questions and Answers

Q1. 1. what is the difference between exception and error. How did u solve the errors in the code deployment?
View answer (16)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Infosys interview questions for popular designations

 System Engineer

 (1.1k)

 Software Engineer

 (307)

 Technology Analyst

 (278)

 Associate Consultant

 (272)

 Senior Systems Engineer

 (271)

 Software Developer

 (261)

 Business Analyst

 (240)

 Senior Associate Consultant

 (182)

Associate Engineer Interview Questions & Answers

user image Sakshi Belpande

posted on 14 Sep 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is oops concept
  • Ans. 

    Object-oriented programming concept that focuses on organizing code into objects with properties and behaviors.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a class to inherit properties and methods from another class.

    • Polymorphism: Ability for objects to take on different forms or behaviors based on their data type.

    • Abstraction: Hiding complex implementation d...

  • Answered by AI

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)

Get interview-ready with Top Infosys Interview Questions

ETL Tester Interview Questions & Answers

user image Anonymous

posted on 17 May 2024

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

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Types of SCD and its types
  • Ans. 

    Slowly Changing Dimensions (SCD) are used in data warehousing to track changes to data over time. Types include Type 1, Type 2, and Type 3.

    • Type 1 SCD: Overwrites old data with new data, losing historical information.

    • Type 2 SCD: Creates a new record for each change, preserving historical data.

    • Type 3 SCD: Tracks changes by adding columns to the existing record, allowing for limited historical analysis.

  • Answered by AI
  • Q2. How to find duplicates in SQL?
  • Ans. 

    Use the GROUP BY clause with COUNT() function to find duplicates in SQL.

    • Use GROUP BY clause with COUNT() function to group the records by the columns you want to check for duplicates

    • Filter the results by using HAVING clause to only show records with count greater than 1

    • Example: SELECT column1, column2, COUNT(*) FROM table_name GROUP BY column1, column2 HAVING COUNT(*) > 1;

  • Answered by AI
  • Q3. Test Case vs Test Scenario
  • Ans. 

    Test Case is a detailed set of conditions and steps to be followed to validate a particular functionality, while Test Scenario is a high-level description of the functionality to be tested.

    • Test Case is detailed and specific, while Test Scenario is high-level and general.

    • Test Case includes steps, expected results, and test data, while Test Scenario is more of an overview.

    • Test Case is used for detailed testing, while Tes...

  • Answered by AI
  • Q4. Define bug life cycle
  • Ans. 

    Bug life cycle is the process of a bug from identification to resolution in software testing.

    • Bug is identified by tester

    • Bug is reported in bug tracking tool

    • Bug is assigned to developer

    • Developer fixes the bug

    • Bug is retested by tester

    • Bug is closed if fixed or reopened if not

  • Answered by AI

Skills evaluated in this interview

Top Infosys ETL Tester Interview Questions and Answers

Q1. How do you get data integrity between source and destination, how you perform loading technique.
View answer (1)

ETL Tester Interview Questions asked at other Companies

Q1. If we have 200 staging tables, 40 dimensions tables and 20 facts table, How will you compare it with target systems
View answer (3)

Jobs at Infosys

View all
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. WHAT IS S D L C?
  • Ans. 

    SDLC stands for Software Development Life Cycle, a process used to design, develop, and test software applications.

    • SDLC is a systematic process for building software applications.

    • It includes phases like planning, design, development, testing, deployment, and maintenance.

    • Examples of SDLC models include Waterfall, Agile, and DevOps.

    • Each phase in SDLC has specific goals and deliverables to ensure the quality of the softwa

  • Answered by AI
  • Q2. What is S T L C?
  • Ans. 

    STLC stands for Software Testing Life Cycle, which is a series of steps performed in a specific sequence to ensure the quality of software.

    • STLC is a process followed by software testers to ensure the quality of the software being developed.

    • It includes phases like requirement analysis, test planning, test design, test execution, and test closure.

    • Each phase has specific activities and deliverables that need to be complet...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - the person taking the interview ended the call in mid way

Top Infosys Softwaretest Engineer Interview Questions and Answers

Q1. What is and array .write the code for the same and explain
View answer (1)

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. I were very happy with technical discussion with Infosys, and It went good.
  • Q2. I have faced lot of technical question regarding Oracle DBA, Oracle Apps DBA.

Oracle Apps DBA Interview Questions asked at other Companies

Q1. What is oracle application database administrator?
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. All the question are from your resume. Question will ask in a tricky way. Need to prepare as per resume only.
  • Q2. Describe your self
  • Q3. Explain subcon process
  • Ans. 

    Subcon process refers to subcontracting process where a company outsources part of its manufacturing process to a third-party vendor.

    • Subcon process involves sending raw materials to a subcontractor for processing or assembly.

    • The subcontractor then returns the finished goods to the company.

    • The company pays the subcontractor for the services rendered.

    • Subcon process helps companies focus on core competencies and reduce co...

  • Answered by AI
  • Q4. Inventory question
  • Q5. Standard transactions

Interview Preparation Tips

Interview preparation tips for other job seekers - Without preparation don't go for an interview. Always be prepared at any point of time interview will schedule.

Top Infosys SAP MM Consultant Interview Questions and Answers

Q1. return deliveries to vendor with reference to returns PO
View answer (6)

SAP MM Consultant Interview Questions asked at other Companies

Q1. What is FDS , did you create and if create tell me the requirement?
View answer (5)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How can you write custom exception in Java?
  • Ans. 

    To write a custom exception in Java, create a new class that extends Exception or a subclass of Exception.

    • Create a new class that extends Exception or a subclass of Exception.

    • Add a constructor to the custom exception class to pass a message to the superclass constructor.

    • Throw the custom exception using the 'throw' keyword in your code.

    • Handle the custom exception using try-catch blocks or propagate it up the call stack.

  • Answered by AI
  • Q2. Explain internal working of HashMap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to find the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • To retrieve a value, the key is hashed again to find th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice core java and java8 features

Skills evaluated in this interview

Top Infosys Java Developer Interview Questions and Answers

Q1. Which should be preferred between String and StringBuffer when there are many updates required to the data?
View answer (4)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)

Infosys Interview FAQs

How many rounds are there in Infosys interview for experienced candidates?
Infosys interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Infosys interview process for experienced candidates are Technical, HR and Resume Shortlist.
How to prepare for Infosys interview for experienced candidates?
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 Infosys. The most common topics and skills that interviewers at Infosys expect are SDLC, Java, Project Management, Agile and Performance Engineering.
What are the top questions asked in Infosys interview for experienced candidates?

Some of the top questions asked at the Infosys interview for experienced candidates -

  1. 1. what is the difference between exception and error. How did u solve the erro...read more
  2. write a code to filter out loans with incomplete status using java 8 featur...read more
  3. Managerial: 1) Explain any one past issue and its mitigation strategy. 2) Ho...read more
How long is the Infosys interview process?

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

Tell us how to improve this page.

Infosys Interview Process for Experienced

based on 1.2k interviews

Interview experience

4.1
  
Good
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

Infosys Reviews and Ratings

based on 40.3k reviews

3.6/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

2.7

Salary

4.1

Job security

3.7

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 40.3k Reviews and Ratings
Java, Microservices, spring boot (Pan India)

Pune,

Bangalore / Bengaluru

+1

5-10 Yrs

Not Disclosed

Java, Microservices, spring boot (Pan India)

Hyderabad / Secunderabad,

Chennai

+1

10-16 Yrs

Not Disclosed

Servicenow Developer -ITAM/CSM/ITOM/HRSD/Telco stack

Noida,

Chennai

+1

3-8 Yrs

₹ 1-6 LPA

Explore more jobs
Technology Analyst
55.4k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
51k salaries
unlock blur

₹2.5 L/yr - ₹7.8 L/yr

System Engineer
31.6k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.9k salaries
unlock blur

₹5.1 L/yr - ₹19.5 L/yr

Senior Associate Consultant
28.5k salaries
unlock blur

₹6.2 L/yr - ₹17 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

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