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 24 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
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What are mandatory fields in Swift MT 103
  • Ans. 

    Mandatory fields in Swift MT 103 message

    • Sender's Reference (20)

    • Sender's Account Number (50K)

    • Receiver's Account Number (59)

    • Amount (32A)

    • Currency (33B)

    • Value Date (32A)

    • Sender's Correspondent (53A)

    • Receiver's Correspondent (54A)

  • Answered by AI
  • Q2. Regarding charges and explain for our, sha and ben
  • Q3. Difference between serial and cover method
  • Ans. 

    Serial method involves testing one sample at a time, while cover method involves testing multiple samples together.

    • Serial method tests samples individually in sequence

    • Cover method tests multiple samples simultaneously

    • Serial method is time-consuming but more accurate

    • Cover method is faster but may lead to false negatives

    • Example: Serial method used in PCR testing, cover method used in pool testing

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Difference between iso and Swift
  • Ans. 

    ISO is a set of international standards for various industries, while Swift is a messaging network used by financial institutions.

    • ISO stands for International Organization for Standardization, which sets standards for various industries such as quality management (ISO 9001) and information security (ISO 27001).

    • Swift (Society for Worldwide Interbank Financial Telecommunication) is a messaging network used by financial i...

  • Answered by AI
  • Q2. Difference between waterfall and agile methodologies
  • Ans. 

    Waterfall is a linear sequential approach to software development, while Agile is an iterative and incremental approach.

    • Waterfall follows a sequential process, while Agile allows for flexibility and adaptability.

    • Waterfall requires all requirements to be defined upfront, while Agile allows for changes throughout the project.

    • Waterfall has a fixed timeline and budget, while Agile focuses on delivering value in short itera...

  • Answered by AI
  • Q3. Types pacs messages

Skills evaluated in this interview

Top Infosys Senior Associate Consultant Interview Questions and Answers

Q1. Suppose there are two tables: A Customer table and an Order table. The Order table has a column OrderID CustomerID, OrderStatus, and TotalAmount. The Customer table has the columns CustomerID, CustomerName, PhoneNumber, and Email. Write dow... read more
View answer (2)

Senior Associate Consultant Interview Questions asked at other Companies

Q1. What is journal entries? What is cash allotment? What is differance between PO and Non-PO Invoice? What is accural expanses? What is prepaid expanses? What is vendor ageing? What is MIS? What is trend report?
View answer (4)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Question on tosca db automation
  • Q2. Api automation questions
  • Q3. Tosca basic queations
  • Q4. Dex configuration setup
  • Ans. 

    Dex configuration setup involves configuring the data exchange between Tosca and external systems.

    • Dex configuration is done in Tosca Commander under the 'Dex' tab.

    • You can set up connections to external systems like JIRA, Jenkins, etc.

    • Configuration includes defining endpoints, authentication details, and data mapping.

    • Testing the configuration is important to ensure smooth data exchange.

  • Answered by AI
  • Q5. Scenario based questions

Tosca Automation Test Engineer Interview Questions asked at other Companies

Q1. automate probability of an application where dice passing 4-6 each time for 10 times rolled.
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
-

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

Round 1 - Technical 

(17 Questions)

  • Q1. Middleware concept
  • Q2. Global exception handling
  • Q3. Authentication and authorisation mechanism
  • Q4. How to secure your web api
  • Ans. 

    Securing a web API involves implementing authentication, authorization, and encryption.

    • Implement authentication to verify the identity of the client accessing the API

    • Implement authorization to control what actions the client can perform

    • Use HTTPS to encrypt the communication between the client and the API

    • Implement rate limiting to prevent abuse and protect against denial-of-service attacks

    • Apply input validation and outp...

  • Answered by AI
  • Q5. GitHub repository work flow
  • Q6. How to improving your web api performance
  • Ans. 

    Improving web API performance involves optimizing code, caching, using asynchronous programming, and scaling infrastructure.

    • Optimize code by reducing unnecessary database queries, using efficient algorithms, and minimizing network calls.

    • Implement caching to store frequently accessed data and reduce the load on the server.

    • Use asynchronous programming to handle multiple requests concurrently and improve responsiveness.

    • Sc...

  • Answered by AI
  • Q7. Basic oops concept
  • Q8. Difference between generic and delegates
  • Ans. 

    Delegates are function pointers used to encapsulate methods, while generics are used to create reusable code for different data types.

    • Delegates are used to create callbacks and event handlers.

    • Generics allow the creation of classes, methods, and interfaces that can work with different data types.

    • Delegates can be used to define and invoke methods dynamically at runtime.

    • Generics provide type safety and eliminate the need ...

  • Answered by AI
  • Q9. Where to use generic concept in your project?
  • Ans. 

    Generics can be used in projects to create reusable code that can work with different types.

    • Generics can be used in data structures like lists, dictionaries, and queues to store and retrieve different types of data.

    • Generics can be used in algorithms and functions to work with different types of inputs and outputs.

    • Generics can be used in database operations to handle different types of data.

    • Generics can be used in user ...

  • Answered by AI
  • Q10. What is the use of delegates?
  • Ans. 

    Delegates are used to create references to methods, allowing methods to be passed as parameters or stored as variables.

    • Delegates provide a way to achieve callback functionality in C#.

    • Delegates can be used to implement event handling.

    • Delegates enable loose coupling and separation of concerns.

    • Delegates can be used to create and invoke anonymous methods.

    • Delegates can be used to implement the observer pattern.

  • Answered by AI
  • Q11. Write join query using entity framework
  • Ans. 

    Join query using Entity Framework

    • Use the LINQ query syntax to perform joins in Entity Framework

    • Use the 'join' keyword to specify the join condition

    • Use 'into' keyword to create a group join

    • Use 'on' keyword to specify the join condition

    • Use 'equals' keyword to define the equality condition

  • Answered by AI
  • Q12. What is dependency injection and life cycle methods
  • Ans. 

    Dependency injection is a design pattern that allows objects to be loosely coupled by providing their dependencies externally.

    • Dependency injection is a way to achieve inversion of control in software development.

    • It helps in creating loosely coupled and modular code.

    • In dependency injection, the dependencies of a class are provided externally rather than being created within the class itself.

    • This allows for easier testin...

  • Answered by AI
  • Q13. Basic Linq questions
  • Q14. How to returen& handle large number of records in web api
  • Ans. 

    To handle large number of records in a web API, you can use pagination, streaming, or compression techniques.

    • Implement pagination to retrieve records in smaller chunks

    • Use streaming to process and return records in real-time

    • Apply compression techniques like GZIP to reduce the size of the response

    • Consider caching strategies to improve performance

  • Answered by AI
  • Q15. Filters concepts
  • Q16. Explain the structure of the project?
  • Ans. 

    The project structure in Dot Net Core typically consists of folders for source code, configuration files, and dependencies.

    • The source code is usually organized into folders based on the application's modules or layers, such as Controllers, Models, and Views.

    • Configuration files like appsettings.json store application settings and connection strings.

    • Dependencies are managed using a package manager like NuGet, and their v...

  • Answered by AI
  • Q17. Why should use entity framework rather than writing sql query?
  • Ans. 

    Entity Framework provides a higher level of abstraction, simplifies database operations, improves productivity, and reduces code complexity.

    • Entity Framework abstracts away the underlying database, allowing developers to work with a higher level of abstraction.

    • It simplifies database operations by providing an object-oriented approach to data access.

    • Entity Framework improves productivity by reducing the amount of code ne...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys Dot Net Core Developer interview:
  • .Net Core
  • Entity Framework
  • LINQ
  • Web Api
  • SQL Server
  • C#

Skills evaluated in this interview

Top Infosys Dot Net Core Developer Interview Questions and Answers

Q1. How to returen& handle large number of records in web api
View answer (1)

Dot Net Core Developer Interview Questions asked at other Companies

Q1. How to returen& handle large number of records in web api
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

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

Round 1 - Application Form 

(6 Questions)

  • Q1. Account inventory
  • Q2. Working according to online work
  • Q3. Approval purchase order
  • Q4. GST work tally work
  • Q5. Excel workbook working on system
  • Ans. 

    Excel workbooks can be used to organize and analyze financial data efficiently.

    • Excel workbooks allow for the creation of multiple sheets within a single file for organizing different types of financial data.

    • Formulas and functions can be used in Excel to perform calculations and analysis on financial data.

    • Excel workbooks can be customized with charts and graphs to visually represent financial data.

    • Data can be imported a...

  • Answered by AI
  • Q6. Online returns fille

Interview Preparation Tips

Interview preparation tips for other job seekers - Save the cost of company

Skills evaluated in this interview

Executive Accountant Interview Questions asked at other Companies

Q1. What is the file extension name which is created by the TDS Return software
View answer (4)

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

 (181)

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

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What you want to do in 5 years
  • Ans. 

    In 5 years, I aim to be leading a team of software engineers, working on cutting-edge technologies and making a significant impact in the industry.

    • Lead a team of software engineers

    • Work on cutting-edge technologies

    • Make a significant impact in the industry

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good interview in infosys, noce experinec

Top Infosys Senior Software Engineer Interview Questions and Answers

Q1. When an int is declare with 0 value and passed as an out parameter to a method what will be the output
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Get interview-ready with Top Infosys Interview Questions

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

(1 Question)

  • Q1. Asked about Pegination

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)

Jobs at Infosys

View all
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

50 minutes coding round they asked me some theoretical question and machine coding question they asked me DSA question

Top Infosys React Js Frontend Developer Interview Questions and Answers

Q1. what is callback, event deligaton, react reconcillaton, react life cycle methods
View answer (1)

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)

Test Analyst Interview Questions & Answers

user image Anonymous

posted on 16 May 2024

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

(2 Questions)

  • Q1. Joins and type of joins
  • Ans. 

    Joins are used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left table.

    • FULL ...

  • Answered by AI
  • Q2. Normalisation and types of it with example
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Types of normalization include 1NF, 2NF, 3NF, BCNF, and 4NF.

    • Example: 1NF ensures each column contains atomic values, 2NF eliminates partial dependencies, 3NF removes transitive dependencies, BCNF eliminates non-trivial functional dependencies, and 4NF deals with multi-valued dependencies.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Process of testing
  • Ans. 

    The process of testing involves planning, designing, executing, and evaluating tests to ensure software quality.

    • Planning: Define test objectives, scope, and strategy.

    • Designing: Create test cases and test data.

    • Executing: Run tests and record results.

    • Evaluating: Analyze results and report defects.

    • Iterating: Repeat process to improve quality.

    • Example: Testing a login feature by entering valid and invalid credentials.

  • Answered by AI
  • Q2. Stlc life cycle
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and previous experience

Top Infosys Test Analyst Interview Questions and Answers

Q1. Explain framework and practical uses of oops concepts in framework . explain priority and severity. defect lifecycle
View answer (2)

Test Analyst Interview Questions asked at other Companies

Q1. Explain framework and practical uses of oops concepts in framework . explain priority and severity. defect lifecycle
View answer (2)

Technical Lead Interview Questions & Answers

user image Santanu Chakrabarty

posted on 25 Nov 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1> Write a code of two way data binding .
2>Reverse an array without using reverse()/Builtin method.

Round 2 - Managarial Round 

(5 Questions)

  • Q1. Tell me about yourself.
  • Q2. What progress did you make on your project since last year?
  • Q3. Do you know what NGRX is in Angular? If yes, how does it work?
  • Ans. 

    NGRX is a state management library for Angular applications.

    • NGRX is inspired by Redux, a predictable state container for JavaScript apps.

    • It helps manage the state of an Angular application in a centralized and predictable way.

    • NGRX consists of actions, reducers, selectors, and effects to manage state changes.

    • It allows for a unidirectional data flow in Angular applications.

    • NGRX can be used to handle complex state managem

  • Answered by AI
  • Q4. What kind of project have you completed?
  • Q5. Scenario based questions .

Interview Preparation Tips

Topics to prepare for Infosys Technical Lead interview:
  • Angular
  • Javascript
  • Css
Interview preparation tips for other job seekers - Never attempt to join the interview via mobile, even if HR suggests it.

Skills evaluated in this interview

Top Infosys Technical Lead Interview Questions and Answers

Q1. Managerial: 1) Explain any one past issue and its mitigation strategy. 2) How we can handle the situation when we found code is not complaint before one day of deployment. 3) why are you looking for Switch?
View answer (1)

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)
Interview experience
5
Excellent
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 

(3 Questions)

  • Q1. Questions asked related to Graphql, Nodejs and Typescript
  • Q2. Typescript basic to advance topics
  • Q3. Microservices in apollo federation
  • Ans. 

    Apollo Federation is a way to compose multiple GraphQL services into a single schema

    • Microservices in Apollo Federation allow for independent development and deployment of services

    • Each microservice can have its own data source and business logic

    • Apollo Federation provides a gateway that routes requests to the appropriate microservice

  • Answered by AI

Skills evaluated in this interview

Team Leader (Technical) Interview Questions asked at other Companies

Q1. What is OSG what is v3f What DBG Divert wheel U r V shape best What will take in first site visit and what will customer side need What is use of divert wheel What is sap technology How is lop and cop working
View answer (1)

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
Python Software Developer-RA-PAN INDIA

Ahmedabad,

Chennai

+1

4-9 Yrs

₹ 3.25-8.25 LPA

Dot Net Software Developer-RA--PAN INDIA

Ahmedabad,

Chennai

+1

4-9 Yrs

₹ 6-16 LPA

Java Developer -RA- Core java

Hyderabad / Secunderabad,

Pune

+1

4-9 Yrs

₹ 6-16 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