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
Q. Given an array, reverse the order of its elements in place.
Ans. 

Reverse an array of strings

  • Create a new array and iterate through the original array in reverse order, adding each element to the new array

  • Alternatively, swap elements from the beginning and end of the array until reaching the middle

A Senior Software Engineer was asked
Q. What are joins, and what are the different types of joins?
Ans. 

Joins are used to combine rows from two or more tables based on a related column between them.

  • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

  • INNER JOIN returns rows when there is at least one match in both tables.

  • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

  • RIGHT JOIN returns all rows from the right table and the matched rows from the left table.

  • ...

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
A Senior Software Engineer was asked
Q. What are the Scrum Roles?
Ans. 

Scrum roles are the key positions in a Scrum team responsible for different aspects of the project.

  • Product Owner: Represents the stakeholders and defines the product vision.

  • Scrum Master: Facilitates the Scrum process and ensures adherence to Scrum principles.

  • Development Team: Self-organizing group responsible for delivering the product increment.

  • Stakeholders: Individuals or groups with an interest in the project's...

A Senior Software Engineer was asked
Q. What is a final variable in Java?
Ans. 

A final variable in Java is a variable that cannot be reassigned once it has been initialized.

  • Final variables are declared using the 'final' keyword.

  • They can be assigned a value only once.

  • Final variables are often used to represent constants or values that should not be changed.

  • They can be declared at the class, method, or block level.

  • Final variables can be used in method parameters, local variables, instance vari...

A Senior Software Engineer was asked
Q. What is a final variable?
Ans. 

Final variables in programming are constants that cannot be reassigned after their initial assignment.

  • In Java, a final variable is declared using the 'final' keyword, e.g., 'final int x = 10;'.

  • Once a final variable is assigned, it cannot be changed, e.g., 'x = 20;' will cause a compilation error.

  • Final variables can be used for constants, like 'final double PI = 3.14;'.

  • In classes, final variables can be used to def...

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
Q. What is Boomi Atomsphere?
Ans. 

Boomi Atomsphere is a cloud-based integration platform that allows businesses to connect applications, data, and devices across on-premises and cloud environments.

  • Integration platform for connecting applications, data, and devices

  • Cloud-based solution for on-premises and cloud environments

  • Supports API management, data integration, and workflow automation

  • Provides pre-built connectors for popular applications and sys...

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
Q. In Boomi, what are the document types?
Ans. 

Boomi document types include XML, JSON, flat file, and database record.

  • XML

  • JSON

  • Flat file

  • Database record

Are these interview questions helpful?
A Senior Software Engineer was asked
Q. Write code to check if a string is a palindrome.
Ans. 

Code to check if a string is a palindrome or not.

  • Create a function that takes a string as input

  • Remove all non-alphanumeric characters and convert to lowercase

  • Compare the string with its reverse to check if it's a palindrome

A Senior Software Engineer was asked
Q. Given a string s, return true if it is a palindrome, or false otherwise.
Ans. 

A palindrome is a word, phrase, or sequence that reads the same backward as forward, like 'racecar'.

  • A simple example is 'madam', which is the same when reversed.

  • Phrases like 'A man, a plan, a canal, Panama!' ignore spaces and punctuation.

  • To check if a string is a palindrome, compare it to its reverse.

A Senior Software Engineer was asked
Q. What is the scope of performance testing?
Ans. 

Performance testing ensures software meets speed, stability, and scalability requirements.

  • Performance testing identifies bottlenecks and measures response time, throughput, and resource utilization.

  • It helps optimize system performance, improve user experience, and prevent crashes under high load.

  • Examples include load testing, stress testing, and endurance testing.

  • Performance testing should be conducted throughout ...

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