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

267 interviews found

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

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude test

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic java data types
  • Q2. College experience

Interview Preparation Tips

Interview preparation tips for other job seekers - its about the interviewer
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Apti questions were asked. they were begineer level

Round 2 - Technical 

(1 Question)

  • Q1. Asked about my project and few c++ questions

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
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts and spring boot questions
  • Q2. Streams and SQL queries
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Easy to medium questions

Round 2 - Technical 

(1 Question)

  • Q1. Resume based questions
Round 3 - HR 

(1 Question)

  • Q1. Normal behavioural based questions

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

 (76)

 Senior Test Engineer

 (7)

 Senior Devops Engineer

 (4)

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

(2 Questions)

  • Q1. Explain about collection frame work in java? explain about HashSet.
  • Ans. 

    Collection framework in Java provides a set of interfaces and classes to store and manipulate groups of objects. HashSet is a class that implements the Set interface.

    • HashSet does not allow duplicate elements

    • Elements are stored in a hash table using their hash codes

    • HashSet does not maintain insertion order

    • Example: HashSet set = new HashSet(); set.add("apple"); set.add("banana");

Answered by AI
  • Q2. Write a query to find 2nd highest salary.
  • Ans. 

    Query to find 2nd highest salary in a database table.

    • Use a subquery to select the maximum salary excluding the highest salary

    • Order the salaries in descending order and limit the result to 1

  • Answered by AI

    Skills evaluated in this interview

    Get interview-ready with Top Infosys Interview Questions

    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

    Senior Systems Engineer Jobs at Infosys

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

    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 186 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.9 L/yr - ₹9 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

    S2RL Senior Systems Engineer

    Ahmedabad

    0-2 Yrs

    Not Disclosed

    Explore more jobs
    Technology Analyst
    55.8k salaries
    unlock blur

    ₹3 L/yr - ₹11 L/yr

    Senior Systems Engineer
    50.6k salaries
    unlock blur

    ₹2.8 L/yr - ₹9 L/yr

    System Engineer
    39.5k salaries
    unlock blur

    ₹2.5 L/yr - ₹5.5 L/yr

    Technical Lead
    30.8k salaries
    unlock blur

    ₹5.2 L/yr - ₹19.5 L/yr

    Senior Associate Consultant
    27.8k salaries
    unlock blur

    ₹4.5 L/yr - ₹17 L/yr

    Explore more salaries
    Compare Infosys with

    TCS

    3.7
    Compare

    Wipro

    3.7
    Compare

    Cognizant

    3.8
    Compare

    Accenture

    3.8
    Compare
    Did you find this page helpful?
    Yes No
    write
    Share an Interview