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

Updated 23 Apr 2025

13 Interview questions

An Assistant System Engineer was asked 2mo ago
Q. What is a string?
Ans. 

A string is a sequence of characters used to represent text in programming and data processing.

  • Strings can include letters, numbers, and symbols. Example: 'Hello, World!'

  • In many programming languages, strings are enclosed in quotes. Example: '12345' or "abcde".

  • Strings are immutable in languages like Python, meaning they cannot be changed after creation.

  • Common operations on strings include concatenation, slicing, a...

🔥 Asked by recruiter 8 times
An Assistant System Engineer was asked 2mo ago
Q. What is an array?
Ans. 

An array is a data structure that stores a fixed-size sequence of elements of the same type.

  • Arrays can hold multiple values in a single variable, e.g., ['apple', 'banana', 'cherry'].

  • They are indexed, meaning each element can be accessed using its position, e.g., array[0] gives 'apple'.

  • Arrays have a fixed size, defined at the time of creation, e.g., int[] numbers = new int[5];

  • They can be multi-dimensional, allowing...

Assistant System Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. Constellation Identification Problem Given a matrix named UNIVERS ... read more
asked in TCS
Q2. Given a string S consisting of '*' and '#', find the minimum numb ... read more
asked in TCS
Q3. Space Survival Game Challenge Ninja is in space with unlimited fu ... read more
asked in TCS
Q4. Prime Time Again Problem Statement You are given two integers DAY ... read more
asked in TCS
Q5. Valid Pairs Problem Statement Given an array of integers ARR with ... read more
🔥 Asked by recruiter 4 times
An Assistant System Engineer was asked 2mo ago
Q. What are data types?
Ans. 

Data types define the kind of data a variable can hold, influencing operations and memory allocation.

  • Primitive data types: e.g., int (integer), float (floating-point), char (character).

  • Composite data types: e.g., arrays (collection of elements), structs (custom data structures).

  • Abstract data types: e.g., lists, stacks, queues, which define operations on data.

  • User-defined data types: e.g., classes in object-oriente...

An Assistant System Engineer was asked 6mo ago
Q. Describe a challenging situation you faced.
Ans. 

I faced a challenging situation when a critical project deadline was moved up unexpectedly, requiring quick adjustments and teamwork.

  • Prioritization: I had to quickly assess tasks and prioritize them based on urgency and importance.

  • Team Collaboration: I organized daily stand-up meetings to ensure everyone was aligned and aware of their responsibilities.

  • Resource Management: I identified areas where we could optimize...

An Assistant System Engineer was asked
Q. Explain your academic project.
Ans. 

My academic project was a web-based application for managing student records.

  • Developed using PHP and MySQL

  • Implemented features such as student registration, attendance tracking, and grade management

  • Designed user interface using HTML, CSS, and JavaScript

  • Tested and debugged application to ensure functionality

  • Received an A grade for the project

An Assistant System Engineer was asked
Q. What do you know about OOPs?
Ans. 

OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

  • OOPs is based on the four main concepts: Encapsulation, Inheritance, Polymorphism, and Abstraction.

  • Encapsulation is the process of hiding the implementation details from the user.

  • Inheritance is the process of inheriting the properties of one class by another class.

  • Polymorphism is the ability of an object to ta...

An Assistant System Engineer was asked
Q. What is a compiler?
Ans. 

Compiler is a program that translates source code written in a high-level language into machine code.

  • Compilers are used to convert human-readable code into machine-readable code.

  • They perform lexical analysis, syntax analysis, semantic analysis, and code optimization.

  • Examples of compilers include GCC, Clang, and Microsoft Visual C++.

Are these interview questions helpful?
An Assistant System Engineer was asked
Q. What is a class file?
Ans. 

A class file is a compiled Java program that contains bytecode instructions for the Java Virtual Machine to execute.

  • Class files have a .class extension

  • They are generated by the Java compiler from .java source files

  • Class files are platform-independent and can be executed on any system with a Java Virtual Machine

  • They contain information about the class name, superclass, interfaces, fields, and methods

🔥 Asked by recruiter 2 times
An Assistant System Engineer was asked
Q. What is a tuple?
Ans. 

A tuple is an ordered set of values or elements.

  • Tuples are immutable, meaning their values cannot be changed once created.

  • Tuples can contain elements of different data types.

  • Tuples are often used to return multiple values from a function.

  • Example: ('apple', 'banana', 'cherry')

  • Example: (1, 'hello', True)

🔥 Asked by recruiter 2 times
An Assistant System Engineer was asked
Q. What is an operating system?
Ans. 

An operating system is a software that manages computer hardware and software resources.

  • It acts as an interface between the user and the computer hardware.

  • It provides services to applications and manages system resources.

  • Examples include Windows, macOS, Linux, Android, iOS.

  • It controls the allocation of memory, processing power, and input/output devices.

  • It provides security and protection to the system and its data...

Infosys Assistant System Engineer Interview Experiences

17 interviews found

Interview Questionnaire 

3 Questions

  • Q1. Where u see itself in 5 years
  • Q2. 2 strength and weakness
  • Q3. Explain academic project
  • Ans. 

    My academic project was a web-based application for managing student records.

    • Developed using PHP and MySQL

    • Implemented features such as student registration, attendance tracking, and grade management

    • Designed user interface using HTML, CSS, and JavaScript

    • Tested and debugged application to ensure functionality

    • Received an A grade for the project

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer with confidence
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Write a quotes jkdkdk kkdhe kfkdk
  • Q2. Jskeof kdksosoo dkdoskdk kdidodkd
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. What is a challenging situation faced
  • Ans. 

    I faced a challenging situation when a critical project deadline was moved up unexpectedly, requiring quick adjustments and teamwork.

    • Prioritization: I had to quickly assess tasks and prioritize them based on urgency and importance.

    • Team Collaboration: I organized daily stand-up meetings to ensure everyone was aligned and aware of their responsibilities.

    • Resource Management: I identified areas where we could optimize reso...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
  • Q1. What is array
  • Ans. 

    An array is a data structure that stores a fixed-size sequence of elements of the same type.

    • Arrays can hold multiple values in a single variable, e.g., ['apple', 'banana', 'cherry'].

    • They are indexed, meaning each element can be accessed using its position, e.g., array[0] gives 'apple'.

    • Arrays have a fixed size, defined at the time of creation, e.g., int[] numbers = new int[5];

    • They can be multi-dimensional, allowing for ...

  • Answered by AI
  • Q2. What are data types
  • Ans. 

    Data types define the kind of data a variable can hold, influencing operations and memory allocation.

    • Primitive data types: e.g., int (integer), float (floating-point), char (character).

    • Composite data types: e.g., arrays (collection of elements), structs (custom data structures).

    • Abstract data types: e.g., lists, stacks, queues, which define operations on data.

    • User-defined data types: e.g., classes in object-oriented pro...

  • Answered by AI
  • Q3. What is string
  • Ans. 

    A string is a sequence of characters used to represent text in programming and data processing.

    • Strings can include letters, numbers, and symbols. Example: 'Hello, World!'

    • In many programming languages, strings are enclosed in quotes. Example: '12345' or "abcde".

    • Strings are immutable in languages like Python, meaning they cannot be changed after creation.

    • Common operations on strings include concatenation, slicing, and se...

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

You need to practice aptitude from various free websites.

Round 2 - Coding Test 

Basic knowledge of coding.

Round 3 - HR 

(1 Question)

  • Q1. Study about the company.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Bascics Aptitude, Reasoning, English, Pseduocode

Round 3 - Technical 

(1 Question)

  • Q1. Normal Resume Based Questions , English Communication
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Easy. But Need to practice before hand.

Round 3 - One-on-one 

(1 Question)

  • Q1. HR+Tech round combined. They ask basic questions from resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Yeah, find another company.

I applied via Company Website and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Aptitude test was moderate level

Round 3 - Technical 

(5 Questions)

  • Q1. Introducing yourself firstly
  • Q2. OOPS CONCEPTS and its types
  • Ans. 

    OOPS concepts are fundamental to object-oriented programming. It includes inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance: allows a class to inherit properties and methods from another class

    • Polymorphism: the ability of an object to take on many forms

    • Encapsulation: the process of hiding implementation details from the user

    • Abstraction: the process of hiding complex implementation details from the us...

  • Answered by AI
  • Q3. DATA STRUCTURES AND ALGORITHMS
  • Q4. Tell me about ur project u have done in college
  • Q5. Where do u wanna relocate, are u comfortable in PAN India relocation

Interview Preparation Tips

Topics to prepare for Infosys Assistant System Engineer interview:
  • DSA
  • Algorithms
  • SQL
  • Java
  • OOPS
Interview preparation tips for other job seekers - Nice process of interview and after that if u are selected, u got selection mail and then onboarding

I applied via Company Website and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What do you know about oops?
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPs is based on the four main concepts: Encapsulation, Inheritance, Polymorphism, and Abstraction.

    • Encapsulation is the process of hiding the implementation details from the user.

    • Inheritance is the process of inheriting the properties of one class by another class.

    • Polymorphism is the ability of an object to take on...

  • Answered by AI
  • Q2. What is SDLC? Do you know waterfall model?
  • Ans. 

    SDLC stands for Software Development Life Cycle. Waterfall model is a linear sequential approach to SDLC.

    • SDLC is a process used to design, develop, and test software.

    • It consists of several phases such as planning, analysis, design, implementation, and maintenance.

    • Waterfall model is a traditional approach to SDLC where each phase is completed before moving on to the next.

    • It is a linear and sequential model that does not...

  • Answered by AI
  • Q3. Method overriding & method overloading?
  • Ans. 

    Method overriding is when a subclass provides its own implementation of a method already defined in its superclass. Method overloading is when multiple methods have the same name but different parameters.

    • Method overriding is used to provide a specific implementation of a method in a subclass that is already defined in its superclass.

    • Method overloading is used to define multiple methods with the same name but different ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - None hdjkolvjkkoyf juiitx iikk okay

Skills evaluated in this interview

Round 1 - Aptitude Test 
Round 2 - Coding Test 
Round 3 - One-on-one 

(1 Question)

  • Q1. Question on string array and DSA like tree graph and linked list

Interview Preparation Tips

Interview preparation tips for other job seekers - Pratice aptitude as well as basic coding question
Round 1 - Aptitude Test 
Round 2 - Coding Test 
Round 3 - One-on-one 

(1 Question)

  • Q1. Question on string array and DSA like tree graph and linked list

Interview Preparation Tips

Interview preparation tips for other job seekers - Pratice aptitude as well as basic coding question

What people are saying about Infosys

View All
lesspine
Verified Icon
1w
works at
Infosys
Salary negotiation for Service Desk role – 3.2 yrs exp
Hi everyone, I’ve recently cleared the technical rounds for a Service Desk role at Veoneer (Bangalore) and will be attending the HR round on June 11. I have 3.2 years of experience in IT support and service desk operations. A few details about my background: Skills: Active Directory, Outlook configuration, VPN troubleshooting, BitLocker, Zscaler, Azure MFA, Windows OS support, remote desktop tools Current CTC: ₹3 LPA Looking to negotiate for a better package based on skills and experience I’d really appreciate insights from anyone who has Recently interviewed or worked at Veoneer in an IT support or service desk role Can share what salary range I can reasonably negotiate for with 3+ years of experience Any salary negotiation tips specific to Veoneer’s HR process? Thanks a lot in advance! Your input will really help me approach the HR discussion confidently
Got a question about Infosys?
Ask anonymously on communities.

Infosys Interview FAQs

How many rounds are there in Infosys Assistant System Engineer interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Aptitude Test, One-on-one Round and Coding Test.
What are the top questions asked in Infosys Assistant System Engineer interview?

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

  1. I was asked to write code in ...read more
  2. What is SDLC? Do you know waterfall mod...read more
  3. What is a challenging situation fa...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 7 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Assistant System Engineer Salary
based on 58 salaries
₹2.4 L/yr - ₹5.6 L/yr
9% less than the average Assistant System Engineer Salary in India
View more details

Infosys Assistant System Engineer Reviews and Ratings

based on 11 reviews

3.5/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

3.0

Salary

3.8

Job security

3.6

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 11 Reviews and Ratings
Technology Analyst
55.8k salaries
unlock blur

₹2.6 L/yr - ₹11.6 L/yr

Senior Systems Engineer
53.5k salaries
unlock blur

₹2.5 L/yr - ₹8.5 L/yr

Technical Lead
35k salaries
unlock blur

₹7.3 L/yr - ₹20 L/yr

System Engineer
32.4k salaries
unlock blur

₹2.4 L/yr - ₹5.3 L/yr

Senior Associate Consultant
30.9k salaries
unlock blur

₹6.3 L/yr - ₹17 L/yr

Explore more salaries
Compare Infosys with

TCS

3.6
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare
write
Share an Interview