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 21 Feb 2025

Top Infosys 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 ...read more
  • Q2. Are you okay to learn front end and back end technologies to ensure you are a complete developer in the longer run? Would you be able to learn the concepts if a timeline ...read more
  • Q3. 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 ...read more
View all 31 questions

Infosys Interview Experiences

52 interviews found

Interview Questionnaire 

1 Question

  • Q1. What is pickling?
  • Ans. 

    Pickling is a process of serializing and de-serializing Python objects into a byte stream.

    • Pickling is used to store Python objects in a file or transfer them over a network.

    • The pickle module in Python is used for pickling and unpickling.

    • The pickled data can be stored in a file or transferred over a network.

    • The pickled data can be easily unpickled to get back the original Python object.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic programming concepts.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Sort a list of string
  • Ans. 

    Sort an array of strings

    • Use built-in sorting functions like sort() in JavaScript

    • Implement custom sorting algorithms like bubble sort or quicksort

    • Consider the case sensitivity of the strings while sorting

  • Answered by AI
  • Q2. Find second largest number in 3 numbers
  • Ans. 

    Find the second largest number in a set of three numbers.

    • Compare all three numbers and find the largest one.

    • Then compare the remaining two numbers and find the largest one.

    • The largest of the remaining two numbers is the second largest number.

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies for undefined

asked in Capgemini
Q1. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in Capgemini
Q2. How can you cut a rectangular cake in 8 symmetric pieces in three ... read more
Q3. Split Binary String Problem Statement Chintu has a long binary st ... read more
asked in TCS
Q4. What is the reason that the Iterative Waterfall model was introdu ... read more
asked in Wipro
Q5. Knapsack Problem Statement There is a potter with a limited amoun ... read more

Interview Questionnaire 

2 Questions

  • Q1. Difference between c and c++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports classes and objects while C does not.

    • C++ has better support for function overloading and templates.

    • C++ has a standard library while C does not.

    • C++ is more complex than C.

    • C++ is backward compatible with C.

    • C++ allows for both procedural and object-oriented programming.

    • C++ has a more strict type checking system than C.

  • Answered by AI
  • Q2. What is oops
  • Ans. 

    OOPs is a programming paradigm that uses objects to represent real-world entities and their interactions.

    • OOPs stands for Object-Oriented Programming.

    • It focuses on encapsulation, inheritance, and polymorphism.

    • Encapsulation is the process of hiding implementation details from the user.

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

    • Polymorphism allows objects to take on multiple forms or b...

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is SDLC,explain steps in SDLC
  • Ans. 

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

    • The steps in SDLC are planning, analysis, design, development, testing, deployment, and maintenance.

    • During planning, the project scope and requirements are defined.

    • Analysis involves gathering and analyzing user requirements.

    • Design involves creating a detailed plan for the software.

    • Development involves coding a...

  • Answered by AI
  • Q2. What is your biggest achievement
  • Q3. What is foreign key
  • Ans. 

    A foreign key is a column or a set of columns in a table that refers to the primary key of another table.

    • It establishes a relationship between two tables.

    • It ensures referential integrity.

    • It helps in maintaining data consistency.

    • It can be null or have duplicate values.

    • Example: A 'customer_id' column in an 'orders' table that refers to the 'id' column in a 'customers' table.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and truthfull.mention only your best learned skills in resume. When an answer not known to you tell them you have no idea about it

Skills evaluated in this interview

Infosys interview questions for designations

 Senior Software Engineer

 (77)

 Associate Software Engineer

 (21)

 Software Testing Engineer

 (12)

 Software Engineer Trainee

 (8)

 System Software Engineer

 (6)

 Software Development Engineer

 (3)

 Junior Software Engineer

 (3)

 Software Quality Engineer

 (2)

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Get interview-ready with Top Infosys Interview Questions

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

I applied via Referral and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How to sort elements of a BST
  • Ans. 

    BST elements can be sorted using in-order traversal

    • Perform in-order traversal of the BST

    • Store the elements in a temporary array

    • Sort the array using any sorting algorithm

    • Replace the elements in the BST with the sorted array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - DS Algo basics strong

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Family Background and my skill set

Interview Preparation Tips

Interview preparation tips for other job seekers - Went well with HR

I applied via Campus Placement and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reusability and saves time and effort in writing new code.

    • The existing class is called the parent or base class, and the new class is called the child or derived class.

    • The child class inherits all the properties and methods of the parent class and can also add new ...

  • Answered by AI
  • Q2. What is polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It is achieved through method overriding and/or method overloading.

    • Examples include function overloading in C++ and method overriding in Java.

    • Polymorphism helps in achieving loose coupling and flexibility in code design.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

Aptitude test contained 3 sections
1. Reasoning 
2. Logical Aptitude 
3. Verbal Section

  • 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 tw...

  • Ans. 

    The problem involves counting the number of distinct ways to climb N stairs by taking 1 or 2 steps at a time.

    • Use dynamic programming to solve the problem efficiently.

    • The number of ways to reach the Nth stair is equal to the sum of ways to reach (N-1)th stair and (N-2)th stair.

    • Handle edge cases like N=0 and N=1 separately.

    • Consider using modulo operation to handle large values and prevent overflow.

    • The time complexity of ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in MysoreEligibility criteria60% throughoutInfosys interview preparation:Topics to prepare for the interview - Data structure, OOPS, Computer Network, Studied about Artificial Intelligence, Machine LearningTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Work on your communication skills.
Tip 2 : Searching and Sorting Algorithms

Application resume tips for other job seekers

Tip 1 : Mention your projects properly in the resume
Tip 2 : Also mention extra curricular activities, HR also asks questions on those activities

Final outcome of the interviewSelected

Infosys Interview FAQs

How many rounds are there in Infosys Software Engineer interview for freshers?
Infosys interview process for freshers usually has 2-3 rounds. The most common rounds in the Infosys interview process for freshers are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Infosys Software Engineer interview for freshers?
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 Apex, SFDC, Salesforce, .Net and Triggers.
What are the top questions asked in Infosys Software Engineer interview for freshers?

Some of the top questions asked at the Infosys Software Engineer interview for freshers -

  1. Are you okay to learn front end and back end technologies to ensure you are a c...read more
  2. what do you know about latest technologi in market,have you any idea about AI(A...read more
  3. Are you comfortable using Command Line Interfaces (CLIs) or Integrated Developm...read more
How long is the Infosys Software Engineer interview process?

The duration of Infosys Software Engineer 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 9 interviews

5 Interview rounds

  • Technical Round
  • HR Round
  • Aptitude Test Round - 1
  • Aptitude Test Round - 2
  • Personal Interview1 Round
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Software Engineer Salary
based on 5.7k salaries
₹2.9 L/yr - ₹10.8 L/yr
19% less than the average Software Engineer Salary in India
View more details

Infosys Software Engineer Reviews and Ratings

based on 431 reviews

3.7/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.2

Salary

3.8

Job security

3.7

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 431 Reviews and Ratings
Technology Analyst
55.4k 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.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate Consultant
27.9k 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