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 14 Feb 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
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Related to Java Basics, Java 8
Round 2 - Behavioral 

(1 Question)

  • Q1. Situational questioning

Top Infosys Java Developer Interview Questions and Answers

Q1. OOPS QuestionWhich among String or String Buffer should be preferred when there are lot of updates required to be done in the data?
View answer (2)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Through WhatsApp and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Related to Recruitment
  • Q2. Excel questions

Associate Talent Acquisition Interview Questions asked at other Companies

Q1. What are the job boards you habe used to source the quality candidates?
View answer (1)

UI Developer Interview Questions & Answers

user image Sanket Kumbhar

posted on 23 Aug 2024

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

(1 Question)

  • Q1. Diff. between let var const
  • Ans. 

    let, var, and const are all used to declare variables in JavaScript, but they have different scopes and behaviors.

    • let: block-scoped variable, can be reassigned

    • var: function-scoped variable, can be reassigned

    • const: block-scoped variable, cannot be reassigned, but its properties can be modified

  • Answered by AI

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)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about a time when you handled conflict in a team
  • Ans. 

    Handled conflict in a team by facilitating open communication and finding a compromise

    • Addressed the issue directly with the individuals involved

    • Encouraged open and honest communication to understand each person's perspective

    • Facilitated a discussion to find a compromise that satisfied all team members

  • Answered by AI

Lead Software Engineer Interview Questions asked at other Companies

Q1. Square Root with Decimal Precision Problem Statement You are provided with two integers, 'N' and 'D'. Your objective is to determine the square root of the number 'N' with a precision up to 'D' decimal places. This implies that the discrepa... read more
Add answer

Infosys interview questions for popular designations

 System Engineer

 (1.2k)

 Software Engineer

 (315)

 Technology Analyst

 (275)

 Associate Consultant

 (268)

 Senior Systems Engineer

 (266)

 Software Developer

 (261)

 Business Analyst

 (240)

 Senior Associate Consultant

 (173)

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between ext and xfs?
  • Ans. 

    ext is the default file system for many Linux distributions, while xfs is known for better performance and scalability.

    • ext is the default file system for many Linux distributions

    • xfs is known for better performance and scalability

    • xfs supports larger file systems and files compared to ext

  • Answered by AI
  • Q2. What is the difference between CentOS/RHEL 6 & 7?
  • Ans. 

    CentOS/RHEL 6 & 7 differ in kernel version, package management, systemd, and support lifecycle.

    • Kernel version: CentOS/RHEL 6 uses kernel version 2.6.x while CentOS/RHEL 7 uses kernel version 3.x.

    • Package management: CentOS/RHEL 6 uses yum for package management, while CentOS/RHEL 7 uses yum and dnf.

    • Systemd: CentOS/RHEL 6 uses SysV init system, while CentOS/RHEL 7 uses systemd as the init system.

    • Support lifecycle: CentOS...

  • Answered by AI

Skills evaluated in this interview

Senior Devops Engineer Interview Questions asked at other Companies

Q1. What are Terraform life cycles ? and how do we use them ?
View answer (3)

Get interview-ready with Top Infosys Interview Questions

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

I applied via Approached by Company and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(15 Questions)

  • Q1. API Led connectivity explanation in Mulesoft
  • Ans. 

    API Led connectivity in Mulesoft is an approach to connecting and exposing APIs in a reusable and scalable manner.

    • API Led connectivity involves organizing APIs into layers based on their functionality such as experience, process, and system APIs.

    • It promotes reusability, flexibility, and scalability by allowing different APIs to be easily connected and reused in various applications.

    • For example, a company may have an AP...

  • Answered by AI
  • Q2. Error Handling way in Mule4
  • Ans. 

    Error handling in Mule4 involves using Try scope, Error handler, and On Error Continue

    • Use Try scope to encapsulate the code that might throw an error

    • Use Error handler to catch and handle specific errors

    • Use On Error Continue to continue processing even if an error occurs

  • Answered by AI
  • Q3. How to handle error in subflow.
  • Ans. 

    Error handling in subflows is crucial for maintaining the flow of the main process.

    • Use error handling nodes like Try/Catch or Error Boundary in the subflow.

    • Log the error message or send it to a monitoring system for further analysis.

    • Consider retrying the subflow or notifying the main process about the error.

    • Implement fallback mechanisms to ensure the main process can continue despite errors.

  • Answered by AI
  • Q4. Batch Processing in mule 4
  • Ans. 

    Batch processing in Mule 4 allows for processing large amounts of data in chunks.

    • Batch processing in Mule 4 is achieved using the Batch Job component.

    • It allows for processing large amounts of data in chunks, improving performance and efficiency.

    • You can configure batch jobs to read data from a variety of sources, process it, and then write the results to a target system.

    • Batch processing in Mule 4 also supports error han...

  • Answered by AI
  • Q5. For Each Loop vs Batch processing diff
  • Ans. 

    For Each Loop processes elements one by one, while Batch processing groups elements together for processing.

    • For Each Loop is used to iterate over each element in a collection individually.

    • Batch processing involves processing a group of elements together in a single operation.

    • For Each Loop is more suitable for small collections, while Batch processing is efficient for large datasets.

    • Example: For Each Loop can be used to...

  • Answered by AI
  • Q6. How to implement retry mechanism for external system connection.
  • Ans. 

    Implement retry mechanism for external system connection

    • Use a loop to attempt connection multiple times

    • Include a delay between each retry to avoid overwhelming the external system

    • Set a maximum number of retry attempts to prevent infinite loops

    • Consider implementing exponential backoff for retries to gradually increase the time between attempts

  • Answered by AI
  • Q7. How to handle System API error handling in Experience API.
  • Ans. 

    Handle System API errors in Experience API by implementing proper error handling techniques.

    • Implement try-catch blocks to catch and handle exceptions thrown by System APIs.

    • Use status codes and error messages to communicate errors to the user.

    • Log detailed error information for troubleshooting purposes.

    • Provide user-friendly error messages to guide users on how to resolve the issue.

    • Consider implementing retry mechanisms f

  • Answered by AI
  • Q8. Can we use same API Id in two different applications.
  • Ans. 

    No, API Id should be unique to avoid conflicts and ensure proper functioning of applications.

    • API Id should be unique to avoid conflicts in data retrieval and processing.

    • Using the same API Id in two different applications can lead to errors and unexpected behavior.

    • Each application should have its own unique API Id to maintain clarity and organization.

    • For example, Application A should have API Id '123' and Application B

  • Answered by AI
  • Q9. How to consume SOAP web services in mule and implement security header for WSDL.
  • Ans. 

    To consume SOAP web services in Mule and implement security header for WSDL, you can use the MuleSoft Secure Configuration Properties.

    • Use MuleSoft Secure Configuration Properties to configure security headers in the Mule flow.

    • Add a security header to the SOAP request using the element in the Mule configuration file.

    • Configure the security header properties such as username, password, encryption, etc.,...

  • Answered by AI
  • Q10. What is SLA Based policy, explanation
  • Ans. 

    SLA Based policy is a service level agreement that defines the level of service a customer can expect from a provider.

    • SLA Based policy outlines the agreed upon level of service between a service provider and a customer.

    • It includes details such as response time, resolution time, availability, and performance metrics.

    • Failure to meet the SLA can result in penalties or compensation for the customer.

    • For example, an SLA may ...

  • Answered by AI
  • Q11. How to configure and manage mule application application log.
  • Ans. 

    To configure and manage Mule application logs, you can use log4j configuration in the Mule project.

    • Use log4j configuration file to define log levels, appenders, and log format.

    • Add log4j configuration file to src/main/resources folder in Mule project.

    • Configure log4j properties like log level, log file location, and log format.

    • Use Mule properties to dynamically change log levels in different environments.

  • Answered by AI
  • Q12. How to handle error for Scatter Gatter component.
  • Ans. 

    Handle errors in Scatter Gatter component by using try-catch blocks and displaying error messages to the user.

    • Use try-catch blocks to catch errors in the Scatter Gatter component.

    • Display informative error messages to the user when an error occurs.

    • Handle different types of errors such as data loading errors or rendering errors.

    • Implement error logging to track and troubleshoot errors in the Scatter Gatter component.

  • Answered by AI
  • Q13. Scenario: Call Database connector and get database response. we have input payload also. How to use input payload in next component after DB connector.
  • Q14. Can we use resource type in trait in RAML
  • Ans. 

    Yes, resource types can be used in traits in RAML.

    • Resource types can be defined and reused in traits to avoid duplication of code.

    • By using resource types in traits, you can define common characteristics and behaviors that can be applied to multiple resources.

    • Example: defining a resource type for authentication and then using it in multiple resources.

  • Answered by AI
  • Q15. What is fragment
  • Ans. 

    A fragment is a small piece or part of something larger.

    • Fragments can refer to broken pieces of objects or materials.

    • In programming, a fragment is a reusable portion of code that can be included in multiple parts of a program.

    • In literature, a fragment can refer to an incomplete or unfinished work.

    • Fragments can also be used in art to create a sense of incompleteness or ambiguity.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys Senior Associate Consultant interview:
  • Mulesoft
  • Anypoint Platform
Interview preparation tips for other job seekers - explain properly each and every answer.
anything don't know just say don't know, will learn.

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)

Jobs at Infosys

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. Questions were from Triggers, Async apex, LWC and flows
  • Q2. What is Batch Apex
  • Ans. 

    Batch Apex is a Salesforce feature that allows for processing large amounts of data in batches to prevent hitting governor limits.

    • Batch Apex is used to handle large data volumes by breaking the processing into smaller batches.

    • It is useful for operations like data cleansing, data migration, and data integration.

    • Batch Apex jobs can be scheduled to run at specific times or can be executed manually.

    • It helps in preventing h...

  • Answered by AI
  • Q3. How to call LWC from flows
  • Ans. 

    To call LWC from flows, create an Aura component that wraps the LWC and call the Aura component from the flow.

    • Create an Aura component that wraps the LWC component

    • Expose the LWC component as a public property in the Aura component

    • Call the Aura component from the flow using the 'Lightning Component' element

  • Answered by AI

Skills evaluated in this interview

Top Infosys Salesforce Developer Interview Questions and Answers

Q1. How do you make the child records read only of its parent record's field is updated to some value
View answer (1)

Salesforce Developer Interview Questions asked at other Companies

Q1. Write a trigger to update contact when accounts phone changed.
View answer (5)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. .net related questions
  • Q2. Advance c# programming questions
  • Q3. Azure related questions
  • Q4. Agile based process
  • Q5. Hr round and discussion about responsibility

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)

Team Lead Interview Questions & Answers

user image Anonymous

posted on 9 Nov 2024

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

Testing fundamentals, automation testing, manual testing

Top Infosys Team Lead Interview Questions and Answers

Q1. How Cloud is better than other Virtualization platform
View answer (1)

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)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is jre explain
  • Ans. 

    JRE stands for Java Runtime Environment, it is a software package that provides the necessary tools to run Java applications.

    • JRE includes Java Virtual Machine (JVM), class libraries, and other necessary files to run Java applications.

    • It does not contain development tools like compiler or debugger, which are included in JDK (Java Development Kit).

    • JRE is required to run Java applications on a computer, as it provides the...

  • Answered by AI
  • Q2. What is jdk explain
  • Ans. 

    JDK stands for Java Development Kit, it is a software development kit used for developing Java applications.

    • JDK includes tools for developing, debugging, and monitoring Java applications.

    • It contains JRE (Java Runtime Environment) which is necessary for running Java programs.

    • JDK also includes a compiler, debugger, and other tools needed for Java development.

    • Examples of JDK versions include JDK 8, JDK 11, and JDK 15.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - basics of java

Skills evaluated in this interview

Top Infosys Java Developer Interview Questions and Answers

Q1. OOPS QuestionWhich among String or String Buffer should be preferred when there are lot of updates required to be done in the data?
View answer (2)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... 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, Agile, Project Management 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.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

Infosys Reviews and Ratings

based on 38.6k reviews

3.6/5

Rating in categories

3.7

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 38.6k Reviews and Ratings
PDS Mechanical (Product data services)

Pune,

Gurgaon / Gurugram

1-5 Yrs

Not Disclosed

Specialist Technical Writing

Pune

2-5 Yrs

Not Disclosed

Packaging/Labeling Engineer

Pune

2-5 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
56k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.3k salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

System Engineer
39.4k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.7k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.6k salaries
unlock blur

₹6.2 L/yr - ₹17.1 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Accenture

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