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

Updated 6 Mar 2025

Top Infosys Interview Questions and Answers

View all 4.5k questions

Infosys Interview Experiences

Popular Designations

7.5k interviews found

DOT NET Developer Interview Questions & Answers

user image konka malathi

posted on 6 Nov 2024

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

Apti, reasoning and verbal communication

Round 2 - Technical 

(2 Questions)

  • Q1. What is CLR ?
  • Ans. 

    CLR stands for Common Language Runtime, it is the virtual machine component of Microsoft's .NET framework.

    • CLR is responsible for managing the execution of .NET programs.

    • It provides services such as memory management, exception handling, and security.

    • CLR compiles the intermediate language code into native code using Just-In-Time (JIT) compilation.

    • It allows different languages to be used within the .NET framework, as lon...

  • Answered by AI
  • Q2. Difference between Kestrel and IIS
  • Ans. 

    Kestrel is a cross-platform web server while IIS is a Windows-only web server.

    • Kestrel is a lightweight, open-source web server developed by Microsoft and optimized for ASP.NET Core applications.

    • IIS (Internet Information Services) is a full-featured web server developed by Microsoft for Windows servers.

    • Kestrel can be used as a standalone server or behind a reverse proxy like IIS or Nginx.

    • IIS provides additional features...

  • Answered by AI

Top Infosys DOT NET Developer Interview Questions and Answers

Q1. What is the difference between windows application development and web based development?
View answer (11)

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (11)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. API Integration
  • Q2. What is WSDL document
  • Ans. 

    WSDL document describes web services and their functionalities.

    • WSDL stands for Web Services Description Language

    • It is an XML document that describes web services and their functionalities

    • WSDL defines the operations, input and output parameters, and data types used by a web service

    • It allows clients to understand how to interact with a web service

  • Answered by AI

Skills evaluated in this interview

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 (42)

Java Developer Interview Questions & Answers

user image Pradnya Mane

posted on 8 Oct 2024

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. List out second largest salary using java 8
  • Ans. 

    Using Java 8, find the second largest salary from a list of salaries.

    • Sort the list of salaries in descending order using streams and lambda expressions.

    • Skip the first element (largest salary) and find the first element (second largest salary).

  • Answered by AI
  • Q2. List all the sum of list
  • Ans. 

    Calculate the sum of all elements in a list

    • Iterate through the list and add each element to a running total

    • Return the total sum at the end

  • Answered by AI

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 (3)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(6 Questions)

  • Q1. Write any Get API
  • Ans. 

    A simple example of a Get API

    • Use a HTTP GET request to retrieve data from a server

    • Include the endpoint URL in the request

    • Handle the response data accordingly

  • Answered by AI
  • Q2. What is final class
  • Ans. 

    A final class is a class that cannot be subclassed or extended.

    • Final classes are declared using the 'final' keyword in Java.

    • Final classes cannot have any subclasses.

    • Final classes are often used for utility classes or classes that should not be modified or extended.

  • Answered by AI
  • Q3. What is static class
  • Ans. 

    A static class is a class that cannot be instantiated and can only contain static members.

    • Static classes are used to group related methods and properties that do not require an instance of the class to be created.

    • Static classes are declared using the 'static' keyword in C#.

    • Static classes cannot be instantiated and cannot contain instance members.

    • Example: 'Math' class in C# is a static class that contains static methods

  • Answered by AI
  • Q4. Explain OOPS concepts
  • Ans. 

    OOPS concepts are the foundation of object-oriented programming, including principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

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

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the compl...

  • Answered by AI
  • Q5. Abstract Class vs Interface
  • Ans. 

    Abstract class is a class that can have both abstract and non-abstract methods, while interface is a contract that defines methods that a class must implement.

    • Abstract class can have constructors, fields, and non-abstract methods.

    • Interface can only have abstract methods and constants.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract class is used to provide a common base fo...

  • Answered by AI
  • Q6. Java 8 features
Round 2 - Technical 

(3 Questions)

  • Q1. What is public, Private protected
  • Ans. 

    Public, private, and protected are access modifiers in object-oriented programming languages.

    • Public: accessible from anywhere, both within and outside the class

    • Private: only accessible within the class where it is declared

    • Protected: accessible within the class and its subclasses

  • Answered by AI
  • Q2. Tell us about your day to day working
  • Q3. Difference between RestController and Controller
  • Ans. 

    RestController is a specialized version of Controller in Spring framework for RESTful web services.

    • RestController is used for creating RESTful web services in Spring framework.

    • Controller is used for handling general web requests.

    • RestController automatically serializes and deserializes request and response bodies as JSON.

    • Controller can return any type of response, not just JSON.

    • Example: @RestController vs @Controller in

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Legal Obligations if any ?
  • Ans. 

    Legal obligations refer to the responsibilities and duties that individuals or organizations are required to fulfill under the law.

    • Compliance with relevant laws and regulations

    • Protection of confidential information

    • Adherence to contractual agreements

    • Respect for intellectual property rights

    • Ensuring workplace safety and health standards

    • Proper handling of customer data and privacy

  • Answered by AI
  • Q2. Salary discussion

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)

Infosys interview questions for popular designations

 System Engineer

 (1.1k)

 Software Engineer

 (307)

 Technology Analyst

 (277)

 Associate Consultant

 (270)

 Senior Systems Engineer

 (267)

 Software Developer

 (260)

 Business Analyst

 (240)

 Senior Associate Consultant

 (178)

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Email Studio in Salesforce Marketing Cloud (SFMC)?
  • Ans. 

    Email Studio is a tool within Salesforce Marketing Cloud for creating, sending, and tracking email campaigns.

    • Email Studio allows users to design personalized email templates

    • Users can segment their audience and send targeted emails

    • It provides analytics to track email performance and engagement

    • Integration with other Salesforce Marketing Cloud tools for seamless marketing campaigns

  • Answered by AI
  • Q2. What is Journey Builder?
  • Ans. 

    Journey Builder is a tool within Salesforce Marketing Cloud that allows marketers to create and automate personalized customer journeys.

    • Allows marketers to create personalized customer journeys based on customer interactions and behaviors

    • Enables automation of marketing campaigns across multiple channels

    • Provides a visual interface for designing and managing customer journeys

    • Integrates with Salesforce CRM data for person

  • Answered by AI

Salesforce Marketing Cloud Consultant Interview Questions asked at other Companies

Q1. What is Email Studio in Salesforce Marketing Cloud (SFMC)?
View answer (1)

Get interview-ready with Top Infosys Interview Questions

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

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

2 hours aptitude contain Verbal ability, Reasoning, Quantitative analysis, Numerical Ability

Round 2 - Technical 

(3 Questions)

  • Q1. Introduce yourself in brief
  • Ans. 

    I am a dedicated System Engineer with 5 years of experience in designing, implementing, and maintaining complex IT systems.

    • 5 years of experience in system engineering

    • Proficient in designing and implementing IT systems

    • Skilled in maintaining complex systems

    • Strong problem-solving and analytical skills

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. Question regarding projects which mention in resume
  • Q3. Questions Regarding Company work culture

Top Infosys System Engineer Interview Questions and Answers

Q1. Count Ways to Reach the N-th Stair Problem Statement You are provided with a number of stairs, and initially, you are located at the 0th stair. You need to reach the Nth stair, and you can climb one or two steps at a time. Your task is to d... read more
View answer (5)

System Engineer Interview Questions asked at other Companies

Q1. Election Winner Determination In an ongoing election between two candidates A and B, there is a queue of voters that includes supporters of A, supporters of B, and neutral voters. Neutral voters have the power to swing the election results ... read more
View answer (9)

Jobs at Infosys

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

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. All oops questions and palindrome program
  • Q2. Selenium questions
  • Q3. Agile and scrum
  • Q4. Experience in postman
  • Ans. 

    Experience in using Postman for API testing and automation.

    • Used Postman for API testing and automation

    • Familiar with creating requests, setting up environments, and running collections

    • Proficient in writing test scripts and assertions in Postman

    • Experience in integrating Postman with CI/CD pipelines

  • Answered by AI
  • Q5. Interface vs abstraction
  • Ans. 

    Interface defines a contract for a class, while abstraction hides the implementation details.

    • Interface is a blueprint of a class that defines what methods a class must implement.

    • Abstraction is a concept where only the necessary details are shown and the rest are hidden.

    • Interfaces can be implemented by multiple classes, while abstraction is achieved through abstract classes or interfaces.

    • Example: Interface - 'Runnable'

  • Answered by AI

Top Infosys Automation Engineer Interview Questions and Answers

Q1. How do we automate the Multiple pages in API testing
View answer (1)

Automation Engineer Interview Questions asked at other Companies

Q1. 16) What is modbus ? Types of modbus? How many slaves we can connect to one master
View answer (1)

Java Developer Interview Questions & Answers

user image Alaguraja M

posted on 4 Feb 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. It's a technical discussion and it was lasted around 45 minutes.
Round 2 - One-on-one 

(1 Question)

  • Q1. It's a managerial round and it was lasted around 30 minutes.
Round 3 - HR 

(1 Question)

  • Q1. It's just final and usual formality round and lasted around 15 minutes.

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 (3)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain sum tool
  • Q2. Explain system copy

SAP Basis Consultant Interview Questions asked at other Companies

Q1. A user is not able to login to the SAP System and the Splash screen is going on and on. What would be your approach?
View answer (4)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. It was overall good
  • Q2. Project specific questions were there

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be prepared more from the project side.

Top Infosys Software Engineer Interview Questions and Answers

Q1. Split the String Problem Statement You are given a string str consisting of N lowercase alphabets. Your task is to determine if it is possible to divide the string into three non-empty substrings such that one of them is a substring of the ... read more
View answer (3)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

Infosys Interview FAQs

How many rounds are there in Infosys interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Technical, HR and Aptitude Test.
How to prepare for Infosys 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 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?

Some of the top questions asked at the Infosys interview -

  1. What is your strong point in terms of technical knowledge? Like JAVA, C, C++. ...read more
  2. 1. what is the difference between exception and error. How did u solve the erro...read more
  3. 1. Journal entry for Purchase with GST 2. Explain any one Ind AS 3. What is SAP...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

based on 4.9k 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.1k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k 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
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all

Infosys Reviews and Ratings

based on 39.4k 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 39.4k Reviews and Ratings
Dot Net Developer-- Pune

Hyderabad / Secunderabad,

Chennai

+1

2-7 Yrs

Not Disclosed

Mainframe Developer- Pune

Hyderabad / Secunderabad,

Chennai

+1

2-7 Yrs

Not Disclosed

.NET Software Developer- Pune

Hyderabad / Secunderabad,

Pune

+1

3-8 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Engineer
39.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
30.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate Consultant
28k salaries
unlock blur

₹0 L/yr - ₹0 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