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
3.6

based on 38k Reviews

Filter interviews by

Infosys Interview Questions, Process, and Tips

Updated 22 Jan 2025

Top Infosys Interview Questions and Answers

View all 20 questions

Infosys Interview Experiences

41 interviews found

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

(1 Question)

  • Q1. Related to our daily work
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Core java questions.

Software Engineer Interview Questions Asked at Other Companies for Experienced

Q1. String Compression Problem Statement Implement a program that per ... read more
asked in HCLTech
Q2. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in Cisco
Q3. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Cisco
Q4. Interleaving Two Strings Problem Statement You are given three st ... read more
Q5. Total time: 110 mins 1. Find missing and duplicate numbers from g ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Rotate array by k
  • Ans. 

    Rotate array by k positions to the right

    • Create a temporary array to store elements that will be rotated

    • Shift elements to the right by k positions

    • Copy elements from temporary array back to original array

  • Answered by AI
  • Q2. Intersection point of 2 linked lists
  • Ans. 

    Intersection point of 2 linked lists can be found by comparing the lengths and adjusting the starting points.

    • Traverse both lists to find their lengths

    • Adjust the starting point of the longer list to match the length of the shorter list

    • Traverse both lists in parallel until the intersection point is found

  • Answered by AI
  • Q3. Merge sort an array
  • Ans. 

    Merge sort is a divide and conquer algorithm that recursively divides the array into halves and merges them in sorted order.

    • Divide the array into two halves

    • Recursively merge sort each half

    • Merge the sorted halves back together

  • Answered by AI
  • Q4. Rotate a matrix by 90 degree
  • Ans. 

    To rotate a matrix by 90 degrees, transpose the matrix and then reverse each row.

    • Transpose the matrix by swapping matrix[i][j] with matrix[j][i]

    • Reverse each row of the transposed matrix

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Opps concepts and collections

Infosys interview questions for designations

 Senior Software Engineer

 (73)

 Associate Software Engineer

 (21)

 Software Testing Engineer

 (12)

 Software Engineer Trainee

 (8)

 System Software Engineer

 (6)

 Software Development Engineer

 (3)

 Junior Software Engineer

 (3)

 Assistant Software Engineer

 (2)

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

I applied via Approached by Company and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. I don't want to share
  • Q2. I didn't like it
  • Q3. Not interested to express

Interview Preparation Tips

Interview preparation tips for other job seekers - No idea

Get interview-ready with Top Infosys Interview Questions

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

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Questions on your preferred programming language.

Round 3 - One-on-one 

(1 Question)

  • Q1. DSA questions alongside sql quesries.
Round 4 - HR 

(1 Question)

  • Q1. Basic HR questions

Interview Preparation Tips

Topics to prepare for Infosys Software Engineer interview:
  • DSA
  • SQL
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Java test coding test Java javascript

Round 3 - Technical 

(2 Questions)

  • Q1. How to create interface in java
  • Ans. 

    Interfaces in Java define a contract for classes to implement certain methods and provide a way to achieve abstraction.

    • Interfaces are declared using the 'interface' keyword in Java.

    • All methods in an interface are abstract by default and do not have a method body.

    • Classes can implement interfaces using the 'implements' keyword.

    • Interfaces can be used to achieve multiple inheritance in Java.

    • Example: public interface Shape

  • Answered by AI
  • Q2. Common Design patterns
  • Ans. 

    Common design patterns are reusable solutions to common problems in software design.

    • Creational patterns: Singleton, Factory, Builder

    • Structural patterns: Adapter, Decorator, Facade

    • Behavioral patterns: Observer, Strategy, Template Method

  • Answered by AI

Skills evaluated in this interview

Software Engineer interview

user image Jatin Bindra

posted on 5 Dec 2021

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

I applied via Job Portal and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test was good

Round 2 - Technical 

(2 Questions)

  • Q1. Final keyword in Java
  • Ans. 

    Final keyword in Java is used to restrict the user from changing the value of a variable, making it a constant.

    • Final keyword can be applied to variables, methods, and classes

    • Final variables must be initialized and cannot be reassigned

    • Final methods cannot be overridden in subclasses

    • Final classes cannot be subclassed

  • Answered by AI
  • Q2. Static keyword in Java
  • Ans. 

    Static keyword in Java is used to create class-level variables and methods that can be accessed without creating an instance of the class.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an object of the class

    • Static blocks are used to initialize static variables

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is OOPS ?
  • Ans. 

    OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • OOPS is a way of organizing and designing code around objects

    • Objects have properties (attributes) and methods (functions)

    • Encapsulation, inheritance, and polymorphism are key concepts in OOPS

    • Examples of OOPS languages include Java, C++, and Python

  • Answered by AI
  • Q2. What is Recursion and its program
  • Ans. 

    Recursion is a process of calling a function within itself.

    • Recursion is useful for solving problems that can be broken down into smaller sub-problems.

    • It involves a base case and a recursive case.

    • Examples include factorial, Fibonacci sequence, and binary search.

    • Recursion can be memory-intensive and may cause stack overflow errors.

    • Tail recursion optimization can be used to optimize recursive functions.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the basics well like oops concepts

Infosys Interview FAQs

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

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

  1. How do you get the second to last element from a SQL tab...read more
  2. Why Infosys Time management Polymarphirms Sql O...read more
  3. What is Recursion and its prog...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 24 interviews

3 Interview rounds

  • Technical Round
  • HR Round
  • 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.9 L/yr
18% less than the average Software Engineer Salary in India
View more details

Infosys Software Engineer Reviews and Ratings

based on 419 reviews

3.8/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

3.3

Salary

3.9

Job security

3.8

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 419 Reviews and Ratings
Technology Analyst
56k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.1k salaries
unlock blur

₹2.8 L/yr - ₹6.4 L/yr

System Engineer
39.2k salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Technical Lead
30.6k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.5k salaries
unlock blur

₹6.2 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.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview