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

Infosys Senior Systems Engineer Interview Questions, Process, and Tips

Updated 5 Apr 2025

Top Infosys Senior Systems Engineer Interview Questions and Answers

  • Q1. 2. Explain COMP, COMP-2, COMP-3 and Display. What are the difference between Continue and Next Sentence? Why does SOC7 occur?
  • Q2. 1. Explain COND parameter in JCL. What parameters can be coded both in JOB level as well as STEP level. What are GDG and how to access previous version, next version and ...read more
  • Q3. What is Data Dictionary, an explanation about all the elements of DDIC?
View all 153 questions

Infosys Senior Systems Engineer Interview Experiences

276 interviews found

Interview experience
4
Good
Difficulty level
Easy
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 - HR 

(2 Questions)

  • Q1. What is hr and i hi i people
  • Q2. What is oracke ebs finance
  • Ans. 

    Oracle EBS Finance is a module within Oracle E-Business Suite that focuses on financial management and accounting.

    • Oracle EBS Finance helps organizations manage their financial processes, including accounts payable, accounts receivable, general ledger, and financial reporting.

    • It allows for automation of financial tasks, streamlining processes and improving accuracy.

    • Users can generate financial statements, track expenses...

  • Answered by AI

Skills evaluated in this interview

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

Aptitude questions and english

Round 2 - Technical 

(1 Question)

  • Q1. About project and core cs fundamentals

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 Siemens
Q2. LRU Cache Design Question Design a data structure for a Least Rec ... read more
asked in Infosys
Q3. 1. Explain COND parameter in JCL. What parameters can be coded bo ... 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 Data Dictionary, an explanation about all the elements of ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

DSA and OOPS
Collections
Spring Boot
Hibernate
Junit

Round 2 - Technical 

(2 Questions)

  • Q1. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • HashMap allows null keys and values, but...

  • Answered by AI
  • Q2. Comparator vs Comparable
  • Ans. 

    Comparator is used to define custom sorting order for objects, while Comparable is used to define natural ordering of objects.

    • Comparator is an external class used for custom sorting logic

    • Comparable is an interface used for natural ordering of objects

    • Comparator can be used to sort objects based on multiple criteria

    • Comparable is implemented by the class itself to define default sorting behavior

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep practicing DSA along with Java and spring boot

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Java programs intermediate level
  • Q2. Detailed briefing of worked roject

Infosys interview questions for designations

 Associate Systems Engineer

 (11)

 Embedded Systems Engineer

 (1)

 Senior IoT Systems Engineer

 (1)

 Geographic Information Systems/GIS

 (1)

 Systems and Operations Manager

 (1)

 Senior Software Engineer

 (79)

 Senior Test Engineer

 (8)

 Senior Devops Engineer

 (4)

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

(2 Questions)

  • Q1. What is MVC and MVC life cycle
  • Ans. 

    MVC stands for Model-View-Controller, a software design pattern for organizing code. MVC life cycle involves request handling and response generation.

    • Model represents the data and business logic

    • View displays the data to the user

    • Controller handles user input and updates the model

    • MVC life cycle involves routing the request to the appropriate controller, processing the request, updating the model, rendering the view, and

  • Answered by AI
  • Q2. Difference between ASP. Net and ASP. Net core
  • Ans. 

    ASP.NET is a framework for building web applications on the .NET platform, while ASP.NET Core is a cross-platform, high-performance framework for building modern, cloud-based, internet-connected applications.

    • ASP.NET is Windows-only, while ASP.NET Core is cross-platform and can run on Windows, macOS, and Linux.

    • ASP.NET Core is open-source and modular, allowing developers to include only the necessary components in their ...

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Infosys Interview Questions

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

I applied via Naukri.com and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic question form java, Sql,and most important spring boot
Round 2 - Case Study 

Questions related my project in my current company

Round 3 - Coding Test 

Its java and spring based assessment

Round 4 - Technical 

(1 Question)

  • Q1. I don't understand why but yes they again taken the technical interview and that interviewer is rude and looking like not interested to take a interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - by cleared the second round of interview they also asked me for salary ship too still they again taken the technical interview and rejected me.

Senior Systems Engineer Interview Questions & Answers

user image Arul Mozhi Varman S

posted on 22 Mar 2024

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

I applied via Walk-in and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. ArrayList working
  • Ans. 

    ArrayList is a dynamic array in Java that can grow or shrink in size.

    • ArrayList is part of Java's Collection framework.

    • It allows for easy insertion, deletion, and retrieval of elements.

    • Example: ArrayList<String> names = new ArrayList<>();

    • Example: names.add("John"); names.remove(0); String firstElement = names.get(0);

  • Answered by AI
  • Q2. Difference between ArrayList and HashMap
  • Ans. 

    ArrayList is a resizable array implementation while HashMap is a key-value pair storage with constant time complexity for basic operations.

    • ArrayList stores elements in an ordered sequence and allows duplicate values.

    • HashMap stores key-value pairs and does not allow duplicate keys.

    • Accessing elements in ArrayList is done by index, while accessing elements in HashMap is done by key.

    • ArrayList is not synchronized by default...

  • Answered by AI
  • Q3. List some stream Methods
  • Ans. 

    Stream methods are used in Java to perform operations on a sequence of elements.

    • forEach() - performs an action for each element in the stream

    • filter() - filters elements based on a given predicate

    • map() - transforms elements using a given function

    • reduce() - combines elements into a single result

    • collect() - accumulates elements into a collection

    • flatMap() - transforms each element into zero or more elements

  • Answered by AI
Round 2 - Behavioral interview 

(2 Questions)

  • Q1. How do you react when there is a prod issue?
  • Ans. 

    I remain calm, analyze the issue, prioritize tasks, collaborate with team members, and work towards a resolution.

    • Remain calm and composed to think clearly

    • Analyze the issue to identify root cause

    • Prioritize tasks based on impact and urgency

    • Collaborate with team members for input and support

    • Work towards a resolution efficiently

  • Answered by AI
  • Q2. Difficulty faced in current Job

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is OIC ?
  • Ans. 

    OIC stands for Oracle Integration Cloud, a platform that enables users to integrate applications, automate processes, and manage APIs.

    • Oracle Integration Cloud (OIC) is a cloud-based integration platform offered by Oracle.

    • It allows users to connect applications, automate processes, and create APIs.

    • OIC provides pre-built integrations for popular applications like Salesforce, NetSuite, and ServiceNow.

    • Users can also create...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is OOPS principles
  • Ans. 

    OOPS principles refer to Object-Oriented Programming concepts like Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detail

  • Answered by AI
  • Q2. Java 8 based interview questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain routing in Angular in depth
  • Ans. 

    Routing in Angular is the process of navigating between different components based on the URL.

    • Angular uses the Angular Router module to handle routing in applications.

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

    • Routes can have path, component, redirectTo, pathMatch, and children properties.

    • RouterOutlet directive is used in the main app component to display the routed com...

  • Answered by AI
  • Q2. Dependency Injection in Angular
  • Ans. 

    Dependency Injection in Angular allows for providing dependencies to a class without creating them inside the class.

    • In Angular, Dependency Injection is used to provide dependencies to a class instead of creating them inside the class.

    • It helps in making classes more modular, reusable, and easier to test.

    • Dependencies are typically provided in the constructor of a class using TypeScript.

    • Example: @Injectable() decorator is...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Basic info about package and responsibilities

Skills evaluated in this interview

Infosys Interview FAQs

How many rounds are there in Infosys Senior Systems Engineer interview?
Infosys interview process usually has 2 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
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.

Infosys Senior Systems Engineer Interview Process

based on 197 interviews

5 Interview rounds

  • Technical Round
  • HR Round - 1
  • Personal Interview1 Round - 1
  • HR Round - 2
  • Personal Interview1 Round - 2
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Senior Systems Engineer Salary
based on 51.2k salaries
₹2.5 L/yr - ₹8 L/yr
34% less than the average Senior Systems Engineer Salary in India
View more details

Infosys Senior Systems Engineer Reviews and Ratings

based on 5.2k reviews

3.5/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

2.4

Salary

4.1

Job security

3.7

Company culture

2.5

Promotions

3.2

Work satisfaction

Explore 5.2k Reviews and Ratings
Technology Analyst
55.4k salaries
unlock blur

₹3 L/yr - ₹11.2 L/yr

Senior Systems Engineer
51.2k salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

System Engineer
31.7k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
31k salaries
unlock blur

₹5.1 L/yr - ₹19.6 L/yr

Senior Associate Consultant
28.8k salaries
unlock blur

₹6.2 L/yr - ₹16.9 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