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 Systems Engineer Interview Questions and Answers

Updated 17 Jul 2025

177 Interview questions

A Senior Systems Engineer was asked 3w ago
Q. Write a code snippet.
Ans. 

A code snippet to demonstrate a simple array manipulation in Python.

  • Use lists in Python to create an array-like structure.

  • Example: my_array = [1, 2, 3, 4] to initialize an array.

  • You can append items using my_array.append(5).

  • Access elements using indexing: first_element = my_array[0].

  • Use list comprehensions for transformations: squared = [x**2 for x in my_array].

A Senior Systems Engineer was asked 3w ago
Q. Given a string, remove duplicate characters from it.
Ans. 

Remove duplicates from a string while preserving the original order of characters.

  • Use a set to track seen characters and a list to build the result. Example: 'banana' -> 'ban'.

  • Iterate through the string, adding characters to the result if they haven't been seen. Example: 'apple' -> 'aple'.

  • Consider edge cases like empty strings or strings with all duplicates. Example: '' -> ''.

  • Return the result as a new st...

Senior Systems Engineer Interview Questions Asked at Other Companies

asked in Infosys
Q1. 2. Explain COMP, COMP-2, COMP-3 and Display. What are the differe ... read more
asked in Infosys
Q2. 1. Explain COND parameter in JCL. What parameters can be coded bo ... read more
asked in Siemens
Q3. LRU Cache Design Question Design a data structure for a Least Rec ... read more
asked in Siemens
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Infosys
Q5. What is a Data Dictionary, and can you explain all the elements o ... read more
A Senior Systems Engineer was asked 1mo ago
Q. What is Thymeleaf?
Ans. 

Thymeleaf is a modern server-side Java template engine for web and standalone environments, designed for processing and creating HTML, XML, and more.

  • Thymeleaf integrates seamlessly with Spring Framework, making it a popular choice for Spring MVC applications.

  • It allows for natural templating, meaning templates can be opened and edited in a browser without needing to be processed by the server.

  • Thymeleaf supports var...

A Senior Systems Engineer was asked 1mo ago
Q. What is Swagger?
Ans. 

Swagger is an open-source framework for designing, building, and documenting RESTful APIs.

  • Swagger provides a user-friendly interface for API documentation.

  • It uses a standard format (OpenAPI Specification) to describe APIs.

  • Developers can generate client libraries and server stubs from Swagger definitions.

  • Example: A Swagger UI can display endpoints for a weather API, showing methods like GET /weather.

  • Swagger allows ...

🔥 Asked by recruiter 4 times
A Senior Systems Engineer was asked 1mo ago
Q. What are the core concepts of OOPS?
Ans. 

OOP (Object-Oriented Programming) is a programming paradigm based on objects and classes to structure software design.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the same interfac...

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

Client Interaction

  • Interface with clients for quality assurance and issue resolution
  • Ensure high customer satisfaction

Read full roles & responsibilities

A Senior Systems Engineer was asked 1mo ago
Q. What is the definition of language?
Ans. 

Language is a structured system of communication using symbols, sounds, or gestures to convey meaning.

  • Language can be spoken, written, or signed, such as English, Spanish, or American Sign Language.

  • It consists of grammar, vocabulary, and syntax that govern how words are combined.

  • Language evolves over time, adapting to cultural and societal changes, like the emergence of slang.

  • It serves various functions, including...

Infosys HR Interview Questions

880 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 Systems Engineer was asked 4mo ago
Q. What is an index in Python?
Ans. 

In Python, an index refers to the position of an element in a sequence like a list or string.

  • Indexes in Python are zero-based, meaning the first element is at index 0.

  • For example, in the list `my_list = [10, 20, 30]`, `my_list[0]` returns 10.

  • Negative indexing allows access from the end, e.g., `my_list[-1]` returns 30.

  • Strings are also indexed; for instance, `my_string = 'hello'`, `my_string[1]` returns 'e'.

  • Attempti...

Are these interview questions helpful?
A Senior Systems Engineer was asked 4mo ago
Q. What is the difference between a+b^2 and (a+b)^2?
Ans. 

The expressions a+b2 and (a+b)2 represent different mathematical operations with distinct results.

  • a+b2 means 'a plus b squared', calculated as a + (b * b). Example: If a=2 and b=3, then 2 + 3^2 = 2 + 9 = 11.

  • (a+b)2 means 'the sum of a and b squared', calculated as (a + b) * (a + b). Example: If a=2 and b=3, then (2 + 3)^2 = 5^2 = 25.

  • The first expression focuses on b's value, while the second combines both a and b b...

A Senior Systems Engineer was asked 4mo ago
Q. Write an SQL query to get the highest mark scored by students.
Ans. 

SQL query to find the highest marks scored by students from a database table.

  • Use the SELECT statement to retrieve data from the table containing student marks.

  • Utilize the MAX() function to find the highest mark in the specified column.

  • Example SQL query: SELECT MAX(mark) AS highest_mark FROM students;

  • Consider using GROUP BY if you want to find the highest mark per student or category.

  • Ensure the table name and colum...

A Senior Systems Engineer was asked 4mo ago
Q. What is the first step you would take if the system crashed due to your changes?
Ans. 

Assess the situation, gather information, and implement a rollback to restore system functionality quickly.

  • Assess the impact: Determine which systems are affected and the severity of the crash.

  • Gather logs: Check system logs and error messages to identify what changes caused the crash.

  • Communicate: Inform stakeholders about the issue and the steps being taken to resolve it.

  • Rollback changes: If possible, revert to th...

Infosys Senior Systems Engineer Interview Experiences

286 interviews found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
No response

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(1 Question)

  • Q1. I recently appeared for an interview at Infosys for the Senior System Engineer (Spring Boot) role. The interview focused on core Java concepts, multithreading, and functional programming, along with some c...
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Workflow of writing an api from beginning till end either u can write all the code on notepad or just verbally explain
  • Ans. 

    Creating an API involves planning, designing, coding, testing, and deploying to ensure functionality and usability.

    • Define the purpose and requirements of the API.

    • Choose the architecture style (REST, GraphQL, etc.).

    • Design the endpoints and data models (e.g., /users, /products).

    • Implement authentication and authorization (e.g., OAuth, JWT).

    • Write the code using a programming language (e.g., Python, Node.js).

    • Test the API us...

  • Answered by AI
  • Q2. Questions related to springboot
  • Q3. Annotations were asked
Round 2 - Technical 

(2 Questions)

  • Q1. Multithreading questions,deployment related questions,debugging and junit testing,security related authenticaton questions were asked
  • Q2. How the project is managed from initiation till release
  • Ans. 

    Project management involves structured phases from initiation to release, ensuring quality and stakeholder satisfaction.

    • Initiation: Define project scope and objectives, e.g., creating a project charter.

    • Planning: Develop a detailed project plan, including timelines and resources, e.g., Gantt charts.

    • Execution: Implement the project plan, coordinating teams and resources, e.g., daily stand-up meetings.

    • Monitoring: Track pr...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys Senior Systems Engineer interview:
  • Spring Boot
  • Jenkins
  • Java
  • JUnit
  • Security

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. CORE JAVA RELATED BASIC
  • Q2. SPRING BOOT RELATED
Round 2 - HR 

(2 Questions)

  • Q1. GENERAL HR QUESTION
  • Q2. SALARY DISCUSSION

Senior Systems Engineer Interview Questions & Answers

user image saisravan ramoju

posted on 17 Oct 2024

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

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Routing in angular
  • Ans. 

    Routing in Angular is the process of navigating between different components or views in a single-page application.

    • Routing allows users to move between different parts of an application without reloading the entire page

    • Routes are defined in the app-routing.module.ts file using the RouterModule.forRoot() method

    • Each route maps a URL path to a component, which is then displayed when the path is accessed

    • Route parameters ca...

  • Answered by AI
  • Q2. Angular life cycle
  • Q3. Find no of occurrence in string
  • Ans. 

    Count the number of occurrences of a specific substring in a given string.

    • Use the built-in function or loop through the string to count occurrences.

    • Consider case sensitivity when counting occurrences.

    • Example: 'hello hello world'.count('hello') = 2

  • Answered by AI

Skills evaluated in this interview

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

If you join as a fresher you gave to give aptitude test

Round 2 - Technical 

(1 Question)

  • Q1. What is method overloading and method overring
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are the Object-Oriented Programming (OOP) concepts that a fresher should be familiar with?

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are experienced and want to come to Infosys then it's ok but if you are fresher and you want to join Infosys then you are doing big mistake
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Those where basics not very hard

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concepts and core java including loops
  • Q2. Conditional statements and overloading and overriding
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude questions and analytical

Round 2 - Technical 

(1 Question)

  • Q1. Write program to find largest number from array
  • Ans. 

    Program to find largest number from array of strings

    • Convert array of strings to array of integers

    • Use a loop to iterate through the array and compare each element to find the largest number

    • Return the largest number found

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude, Algorithm & puzzle

Round 2 - Technical 

(2 Questions)

  • Q1. What are Oops concepts
  • Q2. Explain SDLC life cycle

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain your project architecture.
  • Q2. Data science related concepts.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic SQL and Python coding questions
  • Q2. Machine learning and DS questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics thoroughly and be confident.

What people are saying about Infosys

View All
lesspine
Verified Icon
5d
works at
Infosys
Seeking insights on TCS offer letter
Hii All, I have attended interview for service desk role in tcs at the end of June my tech round and managerial round later I have submitted all my documents in ibegin portal all are showing verified in the portal and in the 2nd week of July I have completed my hr round and later multiple follow ups given update like internal approvals will take time it's been more than month I have contacted hr and he said like internal approvals will take time I asked will it be a month she said it will take more than a month no clear timeline. So will I get offer letter or not seeking insights on this.
Got a question about Infosys?
Ask anonymously on communities.

Infosys Interview FAQs

How many rounds are there in Infosys Senior Systems Engineer interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Technical, Aptitude Test and One-on-one Round.
How to prepare for Infosys Senior Systems 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, Test Cases, Java and Application Development.
What are the top questions asked in Infosys Senior Systems Engineer interview?

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

  1. 2. Explain COMP, COMP-2, COMP-3 and Display. What are the difference between Co...read more
  2. 1. Explain COND parameter in JCL. What parameters can be coded both in JOB leve...read more
  3. What is Data Dictionary, an explanation about all the elements of DD...read more
What are the most common questions asked in Infosys Senior Systems Engineer HR round?

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

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. What is your family backgrou...read more
How long is the Infosys Senior Systems Engineer interview process?

The duration of Infosys Senior Systems 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

4.1/5

based on 207 interview experiences

Difficulty level

Easy 37%
Moderate 62%
Hard 2%

Duration

Less than 2 weeks 49%
2-4 weeks 32%
4-6 weeks 8%
6-8 weeks 4%
More than 8 weeks 8%
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Senior Systems Engineer Salary
based on 54.4k salaries
₹2.5 L/yr - ₹6.3 L/yr
35% less than the average Senior Systems Engineer Salary in India
View more details

Infosys Senior Systems Engineer Reviews and Ratings

based on 5.5k reviews

3.5/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

2.4

Salary

4.1

Job security

3.7

Company culture

2.5

Promotions

3.2

Work satisfaction

Explore 5.5k Reviews and Ratings
Technology Analyst
55.1k salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Senior Systems Engineer
54.4k salaries
unlock blur

₹2.5 L/yr - ₹6.3 L/yr

Technical Lead
35.4k salaries
unlock blur

₹9.5 L/yr - ₹16.5 L/yr

System Engineer
32.6k salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Senior Associate Consultant
32.4k salaries
unlock blur

₹8.3 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