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 7 Mar 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 150 questions

Infosys Senior Systems Engineer Interview Experiences

269 interviews found

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

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

    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

     (77)

     Senior Test Engineer

     (7)

     Senior Devops Engineer

     (4)

    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

    Get interview-ready with Top Infosys Interview Questions

    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

    Senior Systems Engineer Jobs at Infosys

    View all
    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

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

    (3 Questions)

    • Q1. Basic of Core Java
    • Q2. OOPS Concept , SQL , Resume related Questions
    • Q3. Type of HTTP Methods
    • Ans. 

      HTTP methods are used to indicate the desired action to be performed on a resource.

      • GET - retrieve data from a server

      • POST - submit data to be processed by a server

      • PUT - update a resource on the server

      • DELETE - remove a resource from the server

      • PATCH - partially update a resource on the server

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (2 Questions)

    • Q1. How will you select the unique data in the record
    • Ans. 

      Unique data in a record can be selected by using a combination of data analysis techniques and algorithms.

      • Identify key fields or attributes that can be used to uniquely identify each record

      • Use data profiling to understand the distribution of values in the dataset

      • Implement data cleansing techniques to remove duplicates

      • Utilize data matching algorithms to identify and select unique records

      • Consider using machine learning m

    • Answered by AI
    • Q2. By the keyword Distinct

    Skills evaluated in this interview

    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    6-8 weeks
    Result
    Selected Selected

    I applied via Indeed and was interviewed in Dec 2023. There were 2 interview rounds.

    Round 1 - Technical 

    (2 Questions)

    • Q1. Difference between slice and split in Javascript
    • Ans. 

      slice() returns a shallow copy of a portion of an array into a new array, while split() splits a string into an array of substrings based on a specified separator.

      • slice() does not modify the original array, while split() returns a new array of substrings

      • slice() can take two parameters for start and end index, while split() takes a separator as a parameter

      • Example: var arr = [1, 2, 3, 4, 5]; arr.slice(1, 3) returns [2, 3...

    • Answered by AI
    • Q2. Redux pure reducer
    Round 2 - HR 

    (2 Questions)

    • Q1. Salary discussion ablut expectations
    • Q2. About infosys why you want to join

    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-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
    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 188 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 50.6k salaries
    ₹2.8 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 5k reviews

    3.5/5

    Rating in categories

    3.6

    Skill development

    3.6

    Work-life balance

    2.4

    Salary

    4.2

    Job security

    3.7

    Company culture

    2.4

    Promotions

    3.2

    Work satisfaction

    Explore 5k Reviews and Ratings
    S2RL Senior Systems Engineer

    Ahmedabad

    0-2 Yrs

    Not Disclosed

    Explore more jobs
    Technology Analyst
    55.7k salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Senior Systems Engineer
    50.6k salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    System Engineer
    39.5k salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Technical Lead
    30.8k salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Senior Associate Consultant
    28k 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