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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Senior Software Engineer Interview Questions and Answers

Updated 27 Jun 2025

67 Interview questions

A Senior Software Engineer was asked 8mo ago
Q. Can you write a program to print a 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

A Senior Software Engineer was asked 8mo ago
Q. Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use ...
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.

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
Q2. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q4. If you have to prioritize between coding standards and project de ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more
🔥 Asked by recruiter 3 times
A Senior Software Engineer was asked 8mo ago
Q. Explain the projects you have worked on.
Ans. 

Projects are specific tasks or assignments that require a team to work together to achieve a common goal.

  • Projects involve a defined scope, timeline, and budget.

  • They require a team of individuals with different skills and expertise.

  • Examples include developing a new software application, implementing a new system, or conducting a research study.

A Senior Software Engineer was asked 8mo ago
Q. What tech stack have you worked on?
Ans. 

I have worked on a variety of tech stacks including Java Spring, React, Node.js, and MongoDB.

  • Java Spring

  • React

  • Node.js

  • MongoDB

A Senior Software Engineer was asked 9mo ago
Q. Define data fragmentation.
Ans. 

Data fragmentation refers to the scattering of data across different locations or storage devices, making it difficult to access or manage.

  • Data fragmentation can occur when data is stored in multiple databases or servers.

  • It can also happen when data is divided into smaller pieces and stored in different locations.

  • Fragmented data can lead to slower access times and increased complexity in managing data.

  • Examples inc...

What are the roles & responsibilities of a Senior Software Engineer at Infosys?

Development & Implementation

  • Implement designs and develop high-quality programs and systems
  • Create technical artifacts and respond to production issues

Read full roles & responsibilities

A Senior Software Engineer was asked 9mo ago
Q. Define record type.
Ans. 

A record type is a data type that represents a structured collection of fields or attributes.

  • Record types are used to define structured data in programming languages.

  • Each field in a record type has a name and a data type.

  • Record types are commonly used in database systems to represent rows in tables.

  • Examples of record types include structs in C, classes in Java, and tuples in Python.

Infosys HR Interview Questions

841 questions and answers

Q. How have you addressed security concerns in your project?
Q. Explain your last project.
Q. What aspects of your resume would you like to highlight?
A Senior Software Engineer was asked 9mo ago
Q. What are some basic database questions?
Ans. 

Understanding basic database concepts is crucial for software engineering roles.

  • Databases store, retrieve, and manage data efficiently.

  • SQL (Structured Query Language) is commonly used for relational databases.

  • NoSQL databases like MongoDB are used for unstructured data.

  • Normalization reduces data redundancy in relational databases.

  • Indexes improve query performance but can slow down write operations.

Are these interview questions helpful?
A Senior Software Engineer was asked 9mo ago
Q. How do you handle calls from one upstream service to multiple downstream services?
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 subscrib...

A Senior Software Engineer was asked 9mo ago
Q. How do you 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 bui...

A Senior Software Engineer was asked 9mo ago
Q. What is a 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.

Infosys Senior Software Engineer Interview Experiences

82 interviews found

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

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Some deep question on stream API of Java8
  • Q2. Two program questions -> Anagram String and find first non repeating character from a string
  • Ans. 

    An anagram is a word formed by rearranging the letters of another, while non-repeating characters are unique in a string.

    • Anagram Check: To determine if two strings are anagrams, sort both strings and compare them. Example: 'listen' and 'silent'.

    • Character Count: Use a hash map to count occurrences of each character in a string to find the first non-repeating character. Example: 'swiss' returns 'w'.

    • Case Sensitivity: Cons...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Questions on Product development phases
  • Q2. Questions on Agile methodologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer and interview experience is Good, but very bad experience with HR rounds.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Difference between out and ref.
  • Ans. 

    Out is used for returning multiple values from a method, while ref is used for passing a variable by reference.

    • Out parameters must be assigned a value inside the method before it returns.

    • Ref parameters must be initialized before passing them to a method.

    • Out parameters are used when a method needs to return multiple values.

    • Ref parameters are used when a method needs to modify the value of the parameter.

    • Example: int.TryP...

  • Answered by AI
  • Q2. Sql query to find the 2nd last student marks
  • Q3. Second round was around project specific like why mongodb or posgreSQL? Project architecture and followup questions.
  • Q4. Create global exception handler.
  • Ans. 

    Create a global exception handler to manage all unhandled exceptions in the application.

    • Implement a global exception handler class that extends ExceptionHandler.

    • Override the uncaughtException method to handle all unhandled exceptions.

    • Log the exception details and notify the user about the error.

    • Consider implementing different strategies for handling different types of exceptions.

    • Test the global exception handler thorou...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Explain projects
  • Q2. Tech stack u worked on
  • Ans. 

    I have worked on a variety of tech stacks including Java Spring, React, Node.js, and MongoDB.

    • Java Spring

    • React

    • Node.js

    • MongoDB

  • Answered by AI
  • Q3. Collection framework
  • Q4. Spring Framework questions
Round 2 - Behavioral 

(2 Questions)

  • Q1. Springs questions
  • Q2. Working knowledge in Java
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Oops concepts and elaboration on Inheritance and polymorphism.
  • Q2. Difference between abstract and interface
  • Q3. MVC architecture and Design patterns
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between select single and select single up to 1 row
  • Ans. 

    Select single retrieves exactly one row, while select single up to 1 row retrieves at most one row.

    • Select single is used when exactly one row is expected to be retrieved.

    • Select single up to 1 row is used when at most one row is expected to be retrieved.

    • Select single throws an error if more than one row is found, while select single up to 1 row does not.

  • Answered by AI
  • Q2. RAP
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response
Round 1 - HR 

(5 Questions)

  • Q1. Could you provide a brief self-introduction?
  • Q2. Details about my most recent project
  • Q3. Number of team members?
  • Ans. 

    The ideal team size varies, but typically ranges from 5 to 9 members for optimal collaboration and productivity.

    • Smaller teams (5-7 members) often communicate more effectively, like a startup environment.

    • Larger teams (8-12 members) can bring diverse skills but may face coordination challenges.

    • Agile methodologies suggest 7 +/- 2 as the ideal team size for Scrum teams.

    • Example: Google often uses small teams to foster innov...

  • Answered by AI
  • Q4. Did I receive a direct requirement from the client?
  • Q5. Education details of BTech and resume skill certifications?

Interview Preparation Tips

Interview preparation tips for other job seekers - How can a 10-minute hiring manager round determine whether a candidate is the right fit or not?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java theory questions were asked.
  • Q2. Spring thoery questions were asked.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic java related questions, pillar of java
  • Q2. What is final,finally,finalize
Round 2 - Technical 

(2 Questions)

  • Q1. It was techno managerial round where asked logical question, explain project
  • Q2. Sql queries, java 8 coding questions
Round 3 - HR 

(1 Question)

  • Q1. Discussion for package

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Define record type
  • Q2. Define data fragmentation

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Technical question on .net
  • Q2. What is Polymorphism ?

What people are saying about Infosys

View All
a system engineer
1w
I've only ever heard two types of opinions on this, what about yours?
So I'm working at a company that has an app for 'applying' attendance in case of WFH. You get 'WFH balance' in days. For ex: let's say I have 3 days WFH balance, which means I get to do WFH for 3 days. It will NOT count if I'm actually working on my work laptop or not. It all depends on me applying for WFH through the app. They give out limited WFH balance so that employees are forced to come to the office for the remaining days, which is okay since they have switched to hybrid model. But, if I'm not able to go to office and I don't have any more WFH balance, I will not be able to apply attendance. Instead, the app will force me to put leaves for that day. AND here's the million dollar question: if I had to put leave for that day then technically I shouldn't be working, right? But guess what? I have to work even though it counts as a leave! Wouldn't it be better to pre-apply the leaves and not work at all? But that's just how it is! I want to know your opinion on this.
Got a question about Infosys?
Ask anonymously on communities.

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
What are the most common questions asked in Infosys Senior Software Engineer HR round?

The most common HR questions asked in Infosys Senior Software Engineer interview are -

  1. Why are you looking for a chan...read more
  2. What are your strengths and weakness...read more
  3. Share details of your previous j...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.

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 65 interview experiences

Difficulty level

Easy 28%
Moderate 59%
Hard 13%

Duration

Less than 2 weeks 56%
2-4 weeks 26%
4-6 weeks 9%
6-8 weeks 3%
More than 8 weeks 6%
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Senior Software Engineer Salary
based on 5.1k salaries
₹5.6 L/yr - ₹21.4 L/yr
28% less than the average Senior Software Engineer Salary in India
View more details

Infosys Senior Software Engineer Reviews and Ratings

based on 424 reviews

3.6/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

2.6

Salary

4.0

Job security

3.7

Company culture

2.6

Promotions

3.3

Work satisfaction

Explore 424 Reviews and Ratings
Technology Analyst
54.9k salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Senior Systems Engineer
54.3k salaries
unlock blur

₹2.5 L/yr - ₹6.3 L/yr

Technical Lead
35.3k salaries
unlock blur

₹9.5 L/yr - ₹16.5 L/yr

System Engineer
32.6k salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Senior Associate Consultant
32.2k salaries
unlock blur

₹8.2 L/yr - ₹15 L/yr

Explore more salaries
Compare Infosys with

TCS

3.5
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview