AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Engaged 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
3.6

based on 42.6k Reviews

Play video Play video Video summary
  • About
  • Reviews
    42.6k
  • Salaries
    4.9L
  • Interviews
    7.9k
  • Jobs
    1.8k
  • Benefits
    5.4k
  • Photos
    117
  • Posts
    66

Filter interviews by

Infosys System Engineer Interview Questions and Answers

Updated 12 Jun 2025

625 Interview questions

A System Engineer was asked 1w ago
Q. What is encapsulation in the context of object-oriented programming?
Ans. 

Encapsulation is a fundamental concept in OOP that restricts direct access to an object's data and methods.

  • Encapsulation combines data and methods that operate on that data into a single unit called a class.

  • It restricts access to certain components, which is achieved using access modifiers like private, protected, and public.

  • For example, a class 'Car' can have private attributes like 'speed' and 'fuelLevel', and p...

🔥 Asked by recruiter 2 times
A System Engineer was asked 1mo ago
Q. What are the key concepts of Object-Oriented Programming (OOP)?
Ans. 

Object-Oriented Programming (OOP) is a programming paradigm based on the concept of objects, which can contain data and code.

  • Encapsulation: OOP allows bundling of data and methods that operate on the data within a single unit or class, promoting data hiding. Example: A class 'Car' with attributes like 'speed' and methods like 'accelerate()'.

  • Inheritance: OOP enables a new class to inherit properties and behaviors f...

System Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. Election Winner Determination In an ongoing election between two ... read more
View answers (9)
asked in Infosys
Q2. Count Ways to Reach the N-th Stair Problem Statement You are prov ... read more
View answers (5)
asked in TCS
Q3. Given a parking lot represented as an RxC matrix where each space ... read more
View answers (2)
asked in TCS iON
Q4. GCD (Greatest Common Divisor) Problem Statement You are given two ... read more
View answer (1)
asked in Infosys
Q5. Maximum Subarray Sum Problem Statement Given an array arr of leng ... read more
View answers (6)
View All
A System Engineer was asked 1mo ago
Q. Which are the OOPs concepts?
Ans. 

OOP concepts include encapsulation, inheritance, polymorphism, and abstraction, forming the foundation of object-oriented programming.

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

  • Inheritance: Mechanism where a new class derives properties and behavior from an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present ...

A System Engineer was asked 1mo ago
Q. Explain the concept of encapsulation in Java.
Ans. 

Java encapsulation is a fundamental OOP concept that restricts direct access to class members, promoting data hiding.

  • Encapsulation is achieved using access modifiers: private, protected, and public.

  • Private variables can only be accessed within the same class.

  • Public methods allow controlled access to private variables.

  • Example: A class 'Person' with private 'age' variable and public 'getAge()' method.

  • Encapsulation e...

What people are saying about Infosys

View All
victoriousthyme
Verified Icon
1w
works at
Infosys
3+ Years at Infosys – Should I Join Veoneer Service Desk?
Hi everyone, I’ve cleared the technical round for a Service Desk role at Veoneer (Bangalore), and the HR round is coming up. Before moving forward, I’d love to hear from anyone who has worked there—especially in service desk or IT support teams. Could you please share: Is the role primarily technical IT support (AD, VPN, Outlook troubleshooting) or more of a BPO/customer support? What’s the work culture and shift timings like? Is it usually a full-time or contractual position? Any tips or advice about working there? Also, I have 3+ years experience in Infosys as a service desk analyst—would it be a good move to join Veoneer?
Got a question about Infosys?
Ask anonymously on communities.
A System Engineer was asked 2mo ago
Q. Write a DBMS query to retrieve student records using a nested query.
Ans. 

Nested queries in DBMS allow for complex data retrieval, such as fetching student records based on specific criteria.

  • A nested query is a query within another SQL query.

  • Example: SELECT * FROM students WHERE id IN (SELECT student_id FROM enrollments WHERE course_id = 101);

  • Nested queries can be used to filter results based on related tables.

  • They can improve data retrieval efficiency by reducing the need for multiple ...

A System Engineer was asked 3mo ago
Q. What is the Software Development Lifecycle (SDLC)?
Ans. 

The Software Development Lifecycle (SDLC) is a structured process for developing software applications through various stages.

  • 1. Requirements Gathering: Identify user needs and system requirements.

  • 2. Design: Create architecture and design specifications for the software.

  • 3. Implementation: Write and compile the code based on design documents.

  • 4. Testing: Validate the software through various testing methods (e.g., u...

🔥 Asked by recruiter 4 times
A System Engineer was asked 3mo ago
Q. What is a pointer?
Ans. 

A pointer is a variable that stores the memory address of another variable, enabling direct memory access and manipulation.

  • Pointers are used in languages like C and C++ to manage memory efficiently.

  • Example: int *ptr; // ptr is a pointer to an integer.

  • Pointers can be dereferenced to access the value at the memory address they point to.

  • Example: *ptr = 10; // assigns the value 10 to the integer pointed by ptr.

  • Pointer...

Are these interview questions helpful?
A System Engineer was asked 3mo ago
Q. What is your primary skill?
Ans. 

My primary skill is systems integration, ensuring seamless communication between hardware and software components.

  • Expert in designing and implementing system architectures, e.g., integrating cloud services with on-premises solutions.

  • Proficient in troubleshooting and optimizing system performance, such as reducing latency in data processing.

  • Experience with automation tools like Ansible and Puppet to streamline depl...

A System Engineer was asked 4mo ago
Q. Explain overriding.
Ans. 

Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.

  • Occurs in inheritance when a subclass provides a specific implementation of a method from its parent class

  • The method in the subclass must have the same name, return type, and parameters as the method in the parent class

  • Allows for polymorphism and dynami...

🔥 Asked by recruiter 2 times
A System Engineer was asked 4mo ago
Q. What is abstraction and encapsulation?
Ans. 

Abstraction is hiding unnecessary details while encapsulation is bundling data and methods together.

  • Abstraction focuses on showing only essential features of an object while hiding unnecessary details.

  • Encapsulation involves bundling the data (attributes) and methods (functions) that operate on the data into a single unit.

  • Abstraction allows for easier understanding and management of complex systems.

  • Encapsulation he...

1 2 3 4 5 6 7

Infosys System Engineer Interview Experiences

1.2k interviews found

System Engineer Interview Questions & Answers

user image Anonymous

posted on 28 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - Aptitude Test 

The exam consists of seven sections, and the cutoff score is quite high; it is essential to complete the exam thoroughly.

Round 2 - One-on-one 

(5 Questions)

  • Q1. Can you tell me about yourself?
  • Add your answer
  • Q2. Can you provide details about your internship experience?
  • Ans. 

    I completed a 6-month internship at a tech company, where I worked on network infrastructure projects.

    • Assisted in setting up and configuring network devices such as routers and switches

    • Troubleshooted network issues and implemented solutions

    • Collaborated with team members on various IT projects

    • Participated in meetings with clients to discuss project requirements

  • Answered by AI
    Add your answer
  • Q3. Given a puzzle to solve
  • Add your answer
  • Q4. What can you tell me about your major projects?
  • Ans. 

    I have worked on various major projects including designing and implementing network infrastructure, developing automation scripts, and optimizing system performance.

    • Designed and implemented a new network infrastructure for a large company, improving network speed and reliability

    • Developed automation scripts to streamline system monitoring and maintenance tasks, saving time and reducing errors

    • Optimized system performanc...

  • Answered by AI
    Add your answer
  • Q5. What is the latest news you have heard regarding technology?
  • Ans. 

    The latest news I heard regarding technology is the release of the new iPhone 13 with improved camera features.

    • Apple recently announced the release of the iPhone 13 series with upgraded camera capabilities.

    • The new iPhone 13 models come with improved low-light performance and cinematic mode for videos.

    • Apple also introduced the A15 Bionic chip for enhanced performance and battery life.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay composed, exhibit confidence, and ensure effective communication.
Anonymous

System Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Jan 2025

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

There were a total of seven sections: verbal ability, logical reasoning, arithmetic problems, verbal reasoning, puzzles, pseudocodes, and essay writing, with each section having its own cutoff scores.

Round 2 - One-on-one 

(5 Questions)

  • Q1. What is the SQL query to retrieve the person with the highest salary?
  • Ans. 

    Use SQL query with MAX function to retrieve person with highest salary.

    • Use SELECT statement to retrieve data

    • Use MAX function to find the highest salary

    • Use WHERE clause to filter out the person with highest salary

  • Answered by AI
    Add your answer
  • Q2. Can you describe the projects you have worked on?
  • Ans. 

    I have worked on projects involving network infrastructure upgrades, cloud migration, and cybersecurity enhancements.

    • Upgraded network infrastructure to improve performance and reliability

    • Migrated on-premise systems to the cloud for increased scalability and cost savings

    • Implemented cybersecurity measures such as firewalls and intrusion detection systems

    • Developed disaster recovery plans to ensure business continuity in c...

  • Answered by AI
    Add your answer
  • Q3. Write a query to merge 2 tables?
  • Ans. 

    Merge 2 tables using SQL query

    • Use the JOIN keyword to combine rows from both tables based on a related column

    • Specify the columns to be selected from each table

    • Use different types of joins like INNER JOIN, LEFT JOIN, RIGHT JOIN, or FULL JOIN based on the requirement

  • Answered by AI
    Add your answer
  • Q4. Tell me about the internship that you have done?
  • Ans. 

    I completed a system engineering internship at XYZ Company, where I worked on designing and implementing network infrastructure.

    • Worked on configuring routers and switches

    • Assisted in troubleshooting network issues

    • Collaborated with team members on project planning and execution

  • Answered by AI
    Add your answer
  • Q5. Behavioural questions
  • Add your answer
Anonymous

System Engineer Interview Questions & Answers

user image Anonymous

posted on 24 Dec 2024

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Its very easy
Basic maths questions learned up to 10
Basic Apptitude questions

Round 2 - Technical 

(5 Questions)

  • Q1. Tell me about your self Hi My name is Vikram Adithya I am an hard working and passionate engineering student currently perceiveing in gokaraju rangaraju institute of engineering and technology .I stay with...
  • Add your answer
  • Q2. Intervier asked about what kind of problems did you solved in leetcode? I said palindrome factorial matrix multiplication etc . Intervier said every one can solve this
  • Add your answer
  • Q3. He asked me about my project role i said I have done documentation in my project he said every one can do that
  • Add your answer
  • Q4. He asked me to write project code
  • Add your answer
  • Q5. He asked me any questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer carefully in infosys
If you crack it it is easy to get hired in infosys.
Anonymous

System Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Nov 2024

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

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

Round 1 - Aptitude Test 

Duration was 1.5 hrs. Questions were asked on topics like aptitude, reasoning , puzzle solving and verbal ability. Also a topic was given on which candidates were expected to write an essay. Overall the difficulty level was easy to medium.

Round 2 - One-on-one 

(8 Questions)

  • Q1. Introduce Yourself
  • Add your answer
  • Q2. Explain about your projects (mentioned in resume)
  • Add your answer
  • Q3. Have you got any certifications on cloud technologies?
  • Ans. 

    Yes, I have certifications in AWS and Azure cloud technologies.

    • Certified AWS Solutions Architect

    • Microsoft Certified: Azure Administrator Associate

    • Completed training courses on Google Cloud Platform

  • Answered by AI
    Add your answer
  • Q4. What do you do in your free time?
  • Add your answer
  • Q5. Explain about Encapsulation (OOPS concept)
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for data hiding, which prevents outside code from directly accessing an object's internal state.

    • Access to the data is typically controlled through public methods (getters and setters) defined in the cl...

  • Answered by AI
    Add your answer
  • Q6. Tell about your previous intern/work experience if any
  • Add your answer
  • Q7. What is the one thing that you can say about you for which haven't been noticed by others and credited?
  • Add your answer
  • Q8. Questions about schooling, CGPA in college
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for round 1 test from various youtube videos. It helped me to clear the 1st round. For interview, don't mention things you aren't confident enough in your resume. Prepare well on OOPS concepts, SQL concepts, SDLC concepts and do general research about the company like who is the current ceo, what products are they offering right now, company values, etc.

Skills evaluated in this interview

Anonymous

System Engineer Interview Questions & Answers

user image Anonymous

posted on 10 Mar 2025

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

I appeared for an interview in Feb 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are sorting algorithms, and can you explain their various types and uses?
  • Ans. 

    Sorting algorithms arrange data in a specific order, crucial for efficient data processing and retrieval.

    • Types of sorting algorithms include: Bubble Sort, Quick Sort, Merge Sort, and Heap Sort.

    • Bubble Sort is simple but inefficient for large datasets; it repeatedly steps through the list.

    • Quick Sort is efficient for large datasets, using a divide-and-conquer approach to sort elements.

    • Merge Sort divides the array into hal...

  • Answered by AI
    Add your answer
  • Q2. What is the Software Development Lifecycle (SDLC)?
  • Ans. 

    The Software Development Lifecycle (SDLC) is a structured process for developing software applications through various stages.

    • 1. Requirements Gathering: Identify user needs and system requirements.

    • 2. Design: Create architecture and design specifications for the software.

    • 3. Implementation: Write and compile the code based on design documents.

    • 4. Testing: Validate the software through various testing methods (e.g., unit t...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up you Aptitude and logical reasoning.
Anonymous

System Engineer Interview Questions & Answers

user image Anonymous

posted on 3 Mar 2025

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

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

Questions regarding aptitude, pseudocode, and communication skills.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself.
  • Add your answer
  • Q2. What was your involvement in your college project?
  • Ans. 

    I was the team leader for our college project on developing a smart home automation system.

    • Led a team of 5 members in designing and implementing the system

    • Responsible for project planning, delegating tasks, and ensuring deadlines were met

    • Implemented features such as voice-controlled lights, temperature control, and security cameras

    • Presented the project at a college exhibition and received positive feedback

    • Collaborated ...

  • Answered by AI
    Add your answer
Anonymous

System Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Jan 2025

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

It is very easy, questions on all topics are covered.

Round 2 - Technical 

(2 Questions)

  • Q1. What is abstraction and encapsulation?
  • Ans. 

    Abstraction is hiding unnecessary details while encapsulation is bundling data and methods together.

    • Abstraction focuses on showing only essential features of an object while hiding unnecessary details.

    • Encapsulation involves bundling the data (attributes) and methods (functions) that operate on the data into a single unit.

    • Abstraction allows for easier understanding and management of complex systems.

    • Encapsulation helps i...

  • Answered by AI
    Add your answer
  • Q2. Write a sql query to update a record
  • Ans. 

    SQL query to update a record in a database table

    • Use the UPDATE statement followed by the table name

    • Set the column(s) to be updated using SET keyword

    • Specify the new values for the column(s) to be updated

    • Use WHERE clause to specify the condition for which record to update

  • Answered by AI
    Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Will you able to relocate?
  • Ans. 

    Yes, I am willing to relocate for the right opportunity.

    • I am open to relocating for the right job opportunity

    • I have relocated for previous positions and am comfortable with the process

    • I understand the importance of being flexible and adaptable in the field of engineering

  • Answered by AI
    Add your answer
  • Q2. Why Infosys?
  • Ans. 

    Infosys is a global leader in technology services and consulting, known for its innovative solutions and commitment to excellence.

    • Infosys has a strong reputation for delivering high-quality technology solutions to clients worldwide.

    • The company offers a wide range of opportunities for professional growth and development.

    • Infosys has a culture of innovation and collaboration, which aligns with my own values and career goa...

  • Answered by AI
    Add your answer
Anonymous

System Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Nov 2024

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

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

Round 1 - Aptitude Test 

General Aptitude , Grammar MCQ and Essay Writing

Round 2 - One-on-one 

(5 Questions)

  • Q1. Tell me about yourself?
  • Add your answer
  • Q2. Which Language are you Familiar ?
  • Add your answer
  • Q3. Basic Questions from oops and dbms
  • Add your answer
  • Q4. Why did you choose Infosys ?
  • Add your answer
  • Q5. Questions from my project
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Just have a well Structed Tell me about yourself and basic understanding of oops and dbms and current trends like Gen AI.
Anonymous

System Engineer Interview Questions & Answers

user image Anonymous

posted on 7 Jan 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

................................................................................

Round 2 - Technical 

(2 Questions)

  • Q1. What questions were asked regarding the projects you have completed?
  • Ans. 

    Questions about projects completed in previous roles.

    • Asked to describe specific projects worked on

    • Inquired about the technologies used in the projects

    • Asked about the challenges faced and how they were overcome

    • Asked about the impact of the projects on the organization

    • Inquired about the team collaboration and communication during the projects

  • Answered by AI
    Add your answer
  • Q2. What technologies were used in your project?
  • Ans. 

    The project utilized a variety of technologies including cloud computing, virtualization, automation tools, and network protocols.

    • Cloud computing (e.g. AWS, Azure)

    • Virtualization (e.g. VMware, Hyper-V)

    • Automation tools (e.g. Ansible, Puppet)

    • Network protocols (e.g. TCP/IP, DNS)

  • Answered by AI
    Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. What are the principles of software engineering?
  • Ans. 

    Principles of software engineering are guidelines that help in the development of high-quality software.

    • Requirements gathering and analysis

    • Design

    • Implementation

    • Testing

    • Maintenance

    • Documentation

    • Quality assurance

    • Version control

    • Continuous integration

    • Agile development

  • Answered by AI
    Add your answer
  • Q2. Subqueries, views, joins in SQL
  • Add your answer
Anonymous

System Engineer Interview Questions & Answers

user image Vimal

posted on 18 Nov 2024

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

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

Round 1 - Aptitude Test 

Basic verbal abilitic and logical reasoning question ,pseudocode and essay writing

Round 2 - Technical 

(5 Questions)

  • Q1. About my internship and projects
  • Add your answer
  • Q2. Area of intrest
  • Ans. 

    My area of interest is in network security and data encryption.

    • I have experience in implementing firewalls and intrusion detection systems.

    • I am familiar with encryption algorithms such as AES and RSA.

    • I enjoy staying up-to-date on the latest security threats and technologies.

    • I have worked on securing networks for financial institutions and government agencies.

  • Answered by AI
    Add your answer
  • Q3. Osi models and basic networking
  • Add your answer
  • Q4. Why do u want to join infosys
  • Add your answer
  • Q5. Favourite sport
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and good communication skill is enough to crack this interview
Anonymous
More about working at Infosys
  • HQ - Bengaluru/Bangalore, Karnataka, India
  • IT Services & Consulting
  • 1 Lakh+ Employees (India)
  • Public

Infosys Interview FAQs

How many rounds are there in Infosys System Engineer interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Aptitude Test, Technical and Resume Shortlist.
How to prepare for Infosys System 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, .Net, ASP.Net, C++ and Java.
What are the top questions asked in Infosys System Engineer interview?

Some of the top questions asked at the Infosys System Engineer interview -

  1. What are oops concep...read more
  2. What is SQL? Explain in deta...read more
  3. How to select a record from a tab...read more
What are the most common questions asked in Infosys System Engineer HR round?

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

  1. What are your strengths and weakness...read more
  2. Where do you see yourself in 5 yea...read more
  3. Why are you looking for a chan...read more
How long is the Infosys System Engineer interview process?

The duration of Infosys System Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Infosys Interviews By Designations

  • Infosys System Engineer Interview Questions
  • Infosys Software Engineer Interview Questions
  • Infosys Technology Analyst Interview Questions
  • Infosys Associate Consultant Interview Questions
  • Infosys Senior Systems Engineer Interview Questions
  • Infosys Software Developer Interview Questions
  • Infosys Business Analyst Interview Questions
  • Infosys Senior Associate Consultant Interview Questions
  • Show more
  • Infosys Consultant Interview Questions
  • Infosys Operations Executive Interview Questions

Interview Questions for Popular Designations

  • System Administrator Interview Questions
  • Senior Systems Engineer Interview Questions
  • Assistant System Engineer Interview Questions
  • System Analyst Interview Questions
  • Linux System Administrator Interview Questions
  • System Engineer Hardware Interview Questions
  • Associate Systems Engineer Interview Questions
  • Senior System Administrator Interview Questions
  • Show more
  • Senior System Analyst Interview Questions
  • System Software Engineer Interview Questions

Overall Interview Experience Rating

4.1/5

based on 741 interview experiences

Difficulty level

Easy 37%
Moderate 62%
Hard 1%

Duration

Less than 2 weeks 59%
2-4 weeks 26%
4-6 weeks 8%
6-8 weeks 4%
More than 8 weeks 4%
View more

Top Skills for Infosys System Engineer

C++ Interview Questions & Answers
300 Questions
Java Interview Questions & Answers
250 Questions
Algorithms Interview Questions & Answers
250 Questions
Data Structures Interview Questions & Answers
250 Questions
Software Development Interview Questions & Answers
250 Questions
SQL Interview Questions & Answers
250 Questions

System Engineer Interview Questions from Similar Companies

TCS
TCS System Engineer Interview Questions
3.6
 • 1.2k Interviews
Wipro
Wipro System Engineer Interview Questions
3.7
 • 46 Interviews
IBM
IBM System Engineer Interview Questions
4.0
 • 27 Interviews
Cognizant
Cognizant System Engineer Interview Questions
3.7
 • 20 Interviews
Accenture
Accenture System Engineer Interview Questions
3.8
 • 18 Interviews
Capgemini
Capgemini System Engineer Interview Questions
3.7
 • 11 Interviews
LTIMindtree
LTIMindtree System Engineer Interview Questions
3.7
 • 11 Interviews
Atos
Atos System Engineer Interview Questions
3.8
 • 10 Interviews
HCLTech
HCLTech System Engineer Interview Questions
3.5
 • 9 Interviews
Tech Mahindra
Tech Mahindra System Engineer Interview Questions
3.5
 • 9 Interviews
View all
Infosys System Engineer Salary
based on 32.3k salaries
₹2.4 L/yr - ₹5.3 L/yr
32% less than the average System Engineer Salary in India
View more details

Infosys System Engineer Reviews and Ratings

based on 3.9k reviews

3.7/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

2.7

Salary

3.9

Job security

3.8

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 3.9k Reviews and Ratings
System Engineer Jobs at Infosys
Infosys
Infotainment System Engineer

Chennai

7-10 Yrs

Not Disclosed

Explore more jobs
Infosys Salaries in India
Technology Analyst
55.8k salaries
unlock blur

₹3 L/yr - ₹11.5 L/yr

Senior Systems Engineer
53.1k salaries
unlock blur

₹2.5 L/yr - ₹8.3 L/yr

Technical Lead
34.9k salaries
unlock blur

₹7.3 L/yr - ₹20 L/yr

System Engineer
32.3k salaries
unlock blur

₹2.4 L/yr - ₹5.3 L/yr

Senior Associate Consultant
30.7k salaries
unlock blur

₹6.3 L/yr - ₹17 L/yr

Explore more salaries
Compare Infosys with
TCS

TCS

3.6
Compare
Wipro

Wipro

3.7
Compare
Cognizant

Cognizant

3.7
Compare
Accenture

Accenture

3.8
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Infosys Interview Questions >
  • Infosys System Engineer Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter