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

Clear (1)

Infosys Senior Software Engineer Interview Questions, Process, and Tips

Updated 10 Mar 2025

Top Infosys Senior Software Engineer Interview Questions and Answers

  • Q1. When an int is declare with 0 value and passed as an out parameter to a method what will be the output
  • Q2. What is the difference between arraylist and linked list What are different types of annotations used in spring boot What is lambda expression?
  • Q3. what are the Components used in deploying the previous Projects in AWS?
View all 61 questions

Infosys Senior Software Engineer Interview Experiences

77 interviews found

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

(1 Question)

  • Q1. Core java and collection frameworks
Round 2 - Coding Test 

A straightforward Data Structures and Algorithms question utilizing the Stream API.

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

(1 Question)

  • Q1. What is middle ware in dot net core?
  • Ans. 

    Middleware in .NET Core is software components that are assembled into the pipeline to handle requests and responses.

    • Middleware components are executed in the order they are added to the pipeline.

    • They can perform tasks such as authentication, logging, error handling, etc.

    • Examples of middleware in .NET Core include UseAuthentication, UseMvc, UseStaticFiles, etc.

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a Senior Software Engineer with 8 years of experience in developing scalable and efficient software solutions.

    • 8 years of experience in software development

    • Specialize in developing scalable and efficient software solutions

    • Proficient in programming languages such as Java, Python, and JavaScript

    • Experience with cloud technologies like AWS and Azure

    • Strong problem-solving and analytical skills

  • Answered by AI
  • Q2. Asp.net service life cycle
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What you want to do in 5 years
  • Ans. 

    In 5 years, I aim to be leading a team of software engineers, working on cutting-edge technologies and making a significant impact in the industry.

    • Lead a team of software engineers

    • Work on cutting-edge technologies

    • Make a significant impact in the industry

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good interview in infosys, noce experinec

Infosys interview questions for designations

 Senior Software Engineer Testing

 (3)

 Senior Associate Software Engineer

 (1)

 Senior Software Engineer 2

 (1)

 Software Engineer

 (307)

 Senior QA Engineer -Software Testing

 (1)

 Senior Software Developer

 (19)

 Senior Software Consultant

 (1)

 Senior Software Tester

 (1)

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

I applied via LinkedIn and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Two sum of an array
  • Ans. 

    Find two numbers in an array that add up to a specific target value.

    • Use a hashmap to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hashmap.

    • Return the indices of the two numbers that add up to the target value.

  • Answered by AI
  • Q2. Print the given pattern
  • Ans. 

    Print a given pattern using array of strings

    • Use nested loops to iterate through rows and columns

    • Build the pattern by adding characters based on the row and column indices

    • Example: For a pattern like '12345', the first row would be '1', second row '12', and so on

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Self intro and others
  • Q2. Project related questions and more

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well as much as you cam

Skills evaluated in this interview

Get interview-ready with Top Infosys Interview Questions

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

(2 Questions)

  • Q1. Difference between JVM ,JRE and JDK
  • Ans. 

    JVM is the Java Virtual Machine that executes Java bytecode. JRE is the Java Runtime Environment that includes JVM and libraries. JDK is the Java Development Kit that includes JRE and development tools.

    • JVM is responsible for running Java programs by interpreting bytecode.

    • JRE includes JVM along with libraries and other components needed to run Java applications.

    • JDK is a full-featured development kit that includes JRE, d...

  • Answered by AI
  • Q2. What is @springbootapplication annotation.
  • Ans. 

    Annotation used to mark a class as a Spring Boot application.

    • Used to indicate the main class of a Spring Boot application

    • Enables auto-configuration and component scanning

    • Can be used with additional annotations like @SpringBootApplication

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Core Java related Question with Multithreading
  • Q2. Deep Discussion on Projects.
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Stream ?
  • Ans. 

    A stream is a sequence of data elements made available over time.

    • Streams are used for processing large amounts of data efficiently.

    • They can be infinite or finite in nature.

    • Examples include reading data from a file or network, or generating data dynamically.

  • Answered by AI
  • Q2. How to use kafka
  • Ans. 

    Kafka is a distributed streaming platform used for building real-time data pipelines and streaming applications.

    • Kafka uses topics to organize and store data streams.

    • Producers publish messages to topics.

    • Consumers subscribe to topics to read messages.

    • ZooKeeper is used for managing Kafka brokers and maintaining metadata.

    • Kafka Connect is used for integrating Kafka with external systems.

    • Kafka Streams API allows for building...

  • Answered by AI
  • Q3. How to call from one upstream to several downstream
  • Ans. 

    Use a publish-subscribe pattern to call from one upstream to several downstream

    • Implement a publish-subscribe pattern where the upstream component publishes events and the downstream components subscribe to those events

    • Use a message broker or event bus to facilitate communication between the upstream and downstream components

    • Ensure that the events published by the upstream component are received by all the subscribed do

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Walrus operator
  • Q2. Etl scenario questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-
Round 1 - Assignment 

One online java test

Round 2 - Coding Test 

Java spring boot coding

Contribute & help others!
anonymous
You can choose to be anonymous

Infosys Interview FAQs

How many rounds are there in Infosys Senior Software Engineer interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Technical, HR and Resume Shortlist.
How to prepare for Infosys Senior Software Engineer 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, Software Engineering, Java, Angularjs and J2Ee.
What are the top questions asked in Infosys Senior Software Engineer interview?

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

  1. When an int is declare with 0 value and passed as an out parameter to a method ...read more
  2. What is the difference between arraylist and linked list What are different ty...read more
  3. what are the Components used in deploying the previous Projects in A...read more
How long is the Infosys Senior Software Engineer interview process?

The duration of Infosys Senior Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

SALARIES

Voltas Beko Home Appliances

INTERVIEWS

HighRadius

No Interviews

INTERVIEWS

Capgemini

No Interviews

INTERVIEWS

Deloitte

No Interviews

SALARIES

Voltas Beko Home Appliances

INTERVIEWS

Infosys

No Interviews

SALARIES

Indo Autotech

REVIEWS

Orbees Business Solutions

No Reviews

SALARIES

Escorts Kubota Limited

SALARIES

Noida Power Company

Tell us how to improve this page.

Infosys Senior Software Engineer Interview Process

based on 60 interviews

3 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Senior Software Engineer Salary
based on 4.3k salaries
₹3.6 L/yr - ₹17.5 L/yr
39% less than the average Senior Software Engineer Salary in India
View more details

Infosys Senior Software Engineer Reviews and Ratings

based on 402 reviews

3.6/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

2.7

Salary

4.0

Job security

3.7

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 402 Reviews and Ratings
Technology Analyst
55.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
50.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Engineer
39.6k 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
28.1k 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent