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
3.6

based on 37.9k Reviews

Filter interviews by

Infosys Assistant System Engineer Trainee Interview Questions and Answers

Updated 8 Nov 2024

Infosys Assistant System Engineer Trainee Interview Experiences

3 interviews found

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

Simple interest,puzzles,psuedocodes

I applied via Campus Placement and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple common Questions

Round 2 - Technical 

(1 Question)

  • Q1. Introduce yourself About projects done Simple programa

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your resume true to yourself as most of th questios will be asked from your resume

Assistant System Engineer Trainee Interview Questions Asked at Other Companies

asked in TCS
Q1. #include int main() { int any = ' ' * 10; printf("%d", any); retu ... read more
asked in TCS
Q2. Compute the nearest larger number by interchanging its digits upd ... read more
asked in TCS
Q3. Difference between Structure and Union in C programming language, ... read more
asked in TCS
Q4. Write a program to find a number that is palindrome or not ?
asked in TCS
Q5. Basic print function of python and OOPS concept explanation

I was interviewed before Sep 2021.

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 - One-on-one 

(2 Questions)

  • Q1. Tell me about your project
  • Q2. Tell me about your hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - As a fresher they expect you to have decent communication skills and you need to show enthusiasm to learn new skills

Interview questions from similar companies

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

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. What are the 4 pillars of C++ ?
  • Ans. 

    The 4 pillars of C++ are encapsulation, inheritance, polymorphism, and abstraction.

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

    • Inheritance: Creating new classes from existing classes, inheriting their attributes and methods.

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

    • Abstraction: Hiding complex implementation details and showing only the

  • Answered by AI
  • Q2. What is Normalization in SQL?
  • Ans. 

    Normalization in SQL is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a database into smaller, more manageable tables and defining relationships between them.

    • It helps in reducing data redundancy by storing data in a structured and organized manner.

    • Normalization ensures data integrity by preventing anomalies such as insertion, update, an...

  • Answered by AI
  • Q3. Example of abstract class ?
  • Ans. 

    Abstract class is a class that cannot be instantiated and may contain abstract methods.

    • Cannot be instantiated directly

    • May contain abstract methods that must be implemented by subclasses

    • Used to define a common interface for a group of related classes

  • Answered by AI
  • Q4. SQL Commands ?
  • Q5. Pseudo code for prime number.
  • Ans. 

    Pseudo code for prime number is a simple algorithm to determine if a given number is prime or not.

    • Start by checking if the number is less than 2, if so it is not prime

    • Then iterate from 2 to the square root of the number and check if it is divisible by any number in that range

    • If it is not divisible by any number, then it is a prime number

  • Answered by AI
  • Q6. Create Login page using html, css and js
  • Ans. 

    Create a login page using HTML, CSS, and JS

    • Use HTML for structure and form elements

    • Style the page using CSS for layout and design

    • Implement client-side validation using JavaScript

    • Handle form submission and authentication using JS

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Question related to my hobby?

Interview Preparation Tips

Topics to prepare for TCS Assistant System Engineer Trainee interview:
  • C++
  • SQL
  • HTML
  • CSS
  • Javascript
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Nothing much
Just handling peer pressure

Round 2 - Technical 

(2 Questions)

  • Q1. Explain how dns works
  • Q2. Explain Linux boot process
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Why do you want to join this company?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It is a high-level aptitude test.

Round 2 - Coding Test 

Overall, there are two coding programs.

Round 3 - Technical 

(1 Question)

  • Q1. Technical interview went smoothly
Round 4 - HR 

(1 Question)

  • Q1. General discussion about relocation, strength and weakness, purpose to join in our company
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Need to solve aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. Technical questions based on your skill set and projects
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. Write a code for reverse a string
  • Ans. 

    Code to reverse a string using array of characters

    • Create an array of characters to store the input string

    • Use a loop to iterate through the input string and store each character in the array

    • Reverse the array of characters to get the reversed string

  • Answered by AI
  • Q3. Explain your final year project
  • Ans. 

    Developed a smart irrigation system using IoT technology

    • Researched different sensors to measure soil moisture and temperature

    • Implemented a microcontroller to collect data from sensors and control water flow

    • Designed a mobile app to remotely monitor and adjust irrigation settings

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

General arithmetics and algebra

Round 2 - Coding Test 

MCQ and coding question

Round 3 - Technical 

(2 Questions)

  • Q1. What is Pointers in C
  • Ans. 

    Pointers in C are variables that store memory addresses of other variables. They are used to access and manipulate data indirectly.

    • Pointers are declared using the * symbol.

    • They can be used to pass variables by reference to functions.

    • Pointers can be used to dynamically allocate memory using functions like malloc().

  • Answered by AI
  • Q2. Give examples of each data types in C
  • Ans. 

    Examples of data types in C include int, float, char, and double.

    • int: used for storing integer values (e.g. age = 25)

    • float: used for storing floating-point numbers (e.g. height = 5.8)

    • char: used for storing single characters (e.g. grade = 'A')

    • double: used for storing double-precision floating-point numbers (e.g. salary = 50000.50)

  • Answered by AI

Skills evaluated in this interview

Infosys Interview FAQs

How many rounds are there in Infosys Assistant System Engineer Trainee interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Aptitude Test, Technical and Resume Shortlist.

Tell us how to improve this page.

Infosys Assistant System Engineer Trainee Interview Process

based on 2 interviews

Interview experience

2.5
  
Poor
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Infosys Assistant System Engineer Trainee Salary
based on 14 salaries
₹3.5 L/yr - ₹4 L/yr
6% less than the average Assistant System Engineer Trainee Salary in India
View more details

Infosys Assistant System Engineer Trainee Reviews and Ratings

based on 8 reviews

4.2/5

Rating in categories

3.8

Skill development

4.3

Work-life balance

3.6

Salary

3.1

Job security

3.5

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 8 Reviews and Ratings
Technology Analyst
56k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.1k salaries
unlock blur

₹2.8 L/yr - ₹6.4 L/yr

System Engineer
39.2k salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Technical Lead
30.6k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.5k salaries
unlock blur

₹6.2 L/yr - ₹16.8 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Accenture

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