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 3 Mar 2025

Top Infosys Interview Questions and Answers

View all 4.5k questions

Infosys Interview Experiences

Popular Designations

7.5k interviews found

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

Print 1 to 50 odd numbers using the react hooks

Round 2 - Technical 

(2 Questions)

  • Q1. What is reducer in React
  • Q2. What are higher order components

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th StairsYou have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair. Each time you can either climb one step or two steps. You are supposed to return the number... read more
View answer (5)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(10 Questions)

  • Q1. What is generator? write sample code
  • Ans. 

    A generator in Python is a function that returns an iterator object which can be iterated over to generate values lazily.

    • Generators are created using a function with 'yield' keyword instead of 'return'.

    • They allow for efficient memory usage as they generate values on the fly.

    • Generators are useful for generating large sequences of data without storing them in memory.

    • Example: def my_generator(): for i in range(5): yiel...

  • Answered by AI
  • Q2. What is decorator?
  • Ans. 

    Decorator is a design pattern in Python that allows adding new functionality to an existing object without modifying its structure.

    • Decorators are functions that take another function as an argument and extend its behavior without modifying it directly.

    • They are commonly used to add logging, timing, caching, or authentication to functions.

    • Decorators use the @ symbol followed by the decorator name above the function defin...

  • Answered by AI
  • Q3. Difference between list and tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot.

    • List uses square brackets [], tuple uses parentheses ().

    • List is used for dynamic data, tuple for fixed data.

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
  • Q4. What is list comprehension? write some sample code? what is use of it?
  • Ans. 

    List comprehension is a concise way to create lists in Python by iterating over an existing list or iterable.

    • List comprehension is more concise and readable than traditional loops.

    • It can be used to filter elements, perform operations on elements, or create new lists based on existing ones.

    • Example: squares = [x**2 for x in range(10)]

    • Example: even_numbers = [x for x in range(10) if x % 2 == 0]

  • Answered by AI
  • Q5. Write code of fibonacci series?
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Initialize variables for the first two numbers in the series (0 and 1)

    • Use a loop to calculate the next number by adding the previous two numbers

    • Continue the loop until the desired number of terms is reached

  • Answered by AI
  • Q6. What is dictionary? is this accept duplicate or not?
  • Ans. 

    A dictionary in Python is a collection of key-value pairs. It does not accept duplicate keys.

    • A dictionary is created using curly braces {}

    • Keys in a dictionary must be unique, but values can be duplicated

    • Example: my_dict = {'name': 'John', 'age': 30, 'city': 'New York'}

  • Answered by AI
  • Q7. Multiple decorator
  • Q8. What are the main principles of oops?
  • Ans. 

    Main principles of OOP include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class). Example: Class with private attributes and public methods.

    • Inheritance: Ability to create a new class (derived class) from an existing class (base class), inheriting its attributes and methods. Example: Subclass 'Dog' inheriting from superc...

  • Answered by AI
  • Q9. Explain type of inheritance
  • Ans. 

    Type of inheritance in object-oriented programming determines how a subclass can inherit attributes and methods from a superclass.

    • Single inheritance: a subclass inherits from only one superclass.

    • Multiple inheritance: a subclass inherits from multiple superclasses.

    • Multilevel inheritance: a subclass inherits from a superclass, which in turn inherits from another superclass.

    • Hierarchical inheritance: multiple subclasses in...

  • Answered by AI
  • Q10. What is aws lambda function
  • Ans. 

    AWS Lambda is a serverless computing service provided by Amazon Web Services.

    • Serverless computing service

    • Allows running code without provisioning or managing servers

    • Automatically scales based on incoming traffic

    • Supports multiple programming languages like Python, Node.js, Java, etc.

    • Pay only for the compute time consumed

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a seasoned Python developer with experience leading teams and delivering high-quality software solutions.

    • Over 5 years of experience in Python development

    • Strong leadership skills in guiding and mentoring team members

    • Proven track record of delivering successful software projects on time and within budget

  • Answered by AI
  • Q2. Explain your project briefly
  • Ans. 

    Developed a web application for online shopping with user authentication and payment gateway integration.

    • Created user registration and login functionality using Django framework

    • Integrated Stripe API for secure payment processing

    • Implemented product catalog and shopping cart features

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basic concepts of python

Skills evaluated in this interview

Top Infosys Python Developer Lead Interview Questions and Answers

Q1. what is list comprehension? write some sample code? what is use of it?
View answer (1)

Python Developer Lead Interview Questions asked at other Companies

Q1. what is list comprehension? write some sample code? what is use of it?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Explain the Bug Life Cycle
  • Ans. 

    Bug Life Cycle involves stages from identification to resolution of a software bug.

    • Bug identification by testers or users

    • Bug logging in a bug tracking system

    • Bug prioritization based on severity and impact

    • Bug assignment to developers for fixing

    • Bug resolution and verification

    • Bug closure after confirmation of fix

  • Answered by AI
  • Q2. How to handle dynamic web elements
  • Ans. 

    Dynamic web elements can be handled using techniques like waiting strategies, locating elements by attributes, using XPath, and using frameworks like Selenium.

    • Use explicit and implicit waits to handle dynamic loading of elements

    • Locate elements by attributes that are less likely to change, such as IDs or classes

    • Use XPath to locate elements based on their hierarchy or attributes

    • Utilize frameworks like Selenium WebDriver

  • Answered by AI
  • Q3. Question on some basic coding data structures
Round 2 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I am looking for a competitive salary that reflects my experience and skills in the field of automation engineering.

    • Research industry standards for Senior Automation Engineer salaries

    • Consider my level of experience and expertise in automation engineering

    • Factor in the location and cost of living for the position

    • Negotiate based on additional benefits or perks offered by the company

  • Answered by AI
  • Q2. Why do you want to join Infosys?
  • Ans. 

    I want to join Infosys because of its reputation for innovation, global presence, and opportunities for career growth.

    • Infosys is known for its cutting-edge technology solutions and innovation in the IT industry

    • I am impressed by Infosys's global presence and diverse client base

    • I believe that joining Infosys will provide me with ample opportunities for career growth and development

    • I am excited about the prospect of worki...

  • Answered by AI

Skills evaluated in this interview

Senior Automation Engineer Interview Questions asked at other Companies

Q1. 1. Print numbers from 1 to 100 without using any loop ? 2. How do you take out duplicate values from array without using any set ? if you iterate the array and take out unique values , how do you do it for 2lakh items in less time? 3. Diffe... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is marker interface
  • Ans. 

    A marker interface is an interface with no methods, used to mark classes for special treatment.

    • Marker interfaces do not have any methods to implement.

    • They are used to add metadata to classes at runtime.

    • Examples include Serializable interface in Java.

    • Marker interfaces are often used for type checking or to enable special behavior.

  • Answered by AI
  • Q2. What difference between abstract and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

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

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

    • Abstract classes are used to define a common behavior for subclasses, while interfaces are used to define a contract for classes ...

  • 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 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)

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

 (259)

 Business Analyst

 (240)

 Senior Associate Consultant

 (176)

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

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

Round 1 - Aptitude Test 

Time, Least Common Multiple (LCM), Highest Common Factor (HCF), and boat streams.

Round 2 - HR 

(4 Questions)

  • Q1. Tell me about yourself
  • Q2. Write the Fibonacci series code
  • Q3. Which you have made and explain about that
  • Q4. Have you faced any challenges during your project and how did you overcome that problem
  • Ans. 

    Yes, I faced a challenge when integrating a new system with existing infrastructure. I overcame it by conducting thorough research and collaborating with team members.

    • Identified the compatibility issues between the new system and existing infrastructure

    • Conducted research to find possible solutions and best practices

    • Collaborated with team members to implement the chosen solution effectively

  • Answered by AI

Top Infosys System Engineer Interview Questions and Answers

Q1. Count Ways To Reach The N-th StairsYou have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair. Each time you can either climb one step or two steps. You are supposed to return the number... read more
View answer (9)

System Engineer Interview Questions asked at other Companies

Q1. Who Won the Election???Elections are going on, and there are two candidates A and B, contesting with each other. There is a queue of voters and in this queue, some of them are supporters of A and some of them are supporters of B. Many of th... read more
View answer (12)

Get interview-ready with Top Infosys Interview Questions

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Coding question on arrays
  • Q2. Core java programming related questions

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

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)

Jobs at Infosys

View all

System Engineer Interview Questions & Answers

user image Bindu Madhavi Narra

posted on 7 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Normal aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. What is an array
  • Q2. About projects in ug

Top Infosys System Engineer Interview Questions and Answers

Q1. Count Ways To Reach The N-th StairsYou have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair. Each time you can either climb one step or two steps. You are supposed to return the number... read more
View answer (9)

System Engineer Interview Questions asked at other Companies

Q1. Who Won the Election???Elections are going on, and there are two candidates A and B, contesting with each other. There is a queue of voters and in this queue, some of them are supporters of A and some of them are supporters of B. Many of th... read more
View answer (11)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain ES6 Concepts
  • Q2. Difference between shallow copy and deep copy
Round 2 - Behavioral 

(2 Questions)

  • Q1. About my project
  • Q2. Work flow and all

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)
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 Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Details about state management in React JS
  • Q2. What is Context API?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Javascript well along with important concepts of React JS

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 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 (38)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is Web API and REST API?
  • Ans. 

    Web API and REST API are communication protocols used for accessing and exchanging data over the internet.

    • Web API stands for Web Application Programming Interface, which allows communication between different software applications over the web.

    • REST API stands for Representational State Transfer, which is an architectural style for designing networked applications.

    • Web APIs can use various protocols like HTTP, SOAP, or X...

  • Answered by AI
  • Q2. What is relative path and absoulute path
  • Ans. 

    Relative path is a path that is relative to the current working directory, while absolute path is a full path starting from the root directory.

    • Relative path does not start with the root directory, but rather with the current working directory.

    • Absolute path starts from the root directory and includes all directories leading to the desired file or folder.

    • Example of relative path: 'folder/file.txt'

    • Example of absolute path

  • Answered by AI
  • Q3. What challenges did you face with front end technologies?
  • Ans. 

    I faced challenges with front end technologies such as browser compatibility, responsive design, and performance optimization.

    • Browser compatibility issues with different versions of Internet Explorer, Firefox, Chrome, etc.

    • Struggles with creating responsive designs that work well on various screen sizes and devices.

    • Optimizing performance by reducing page load times and improving rendering speed.

    • Dealing with cross-browse...

  • Answered by AI
Round 2 - Mangerial Round 

(2 Questions)

  • Q1. How do you habndle Null pointer Exception?
  • Ans. 

    Null pointer exceptions can be handled by checking for null values before accessing an object's properties or methods.

    • Always check for null values before accessing object properties or methods

    • Use conditional statements or null checks to prevent null pointer exceptions

    • Handle exceptions using try-catch blocks to gracefully manage errors

    • Avoid chaining method calls on potentially null objects

  • Answered by AI
  • Q2. What do you know about Agile Methodologies?
  • Ans. 

    Agile Methodologies are a set of principles and practices that promote iterative development, collaboration, and flexibility.

    • Agile emphasizes delivering working software frequently, with a focus on customer satisfaction.

    • It values individuals and interactions over processes and tools.

    • Agile promotes responding to change over following a plan.

    • Common Agile frameworks include Scrum, Kanban, and Extreme Programming (XP).

  • Answered by AI

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 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.8k 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.3k 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.3k Reviews and Ratings
Python Software Developer Infosys

Hyderabad / Secunderabad,

Pune

+1

5-10 Yrs

Not Disclosed

Java Developer..

Hyderabad / Secunderabad,

Pune

+1

3-6 Yrs

Not Disclosed

Python Developer Lead_Pune

Hyderabad / Secunderabad,

Pune

+1

5-10 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55.6k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

System Engineer
39.5k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.7k salaries
unlock blur

₹5.1 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.9k salaries
unlock blur

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