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 System Engineer Hardware Interview Questions, Process, and Tips

Updated 11 Jan 2025

Top Infosys System Engineer Hardware Interview Questions and Answers

  • Q1. How many such letter-pairs are there in the word SERVANT, having the same no. of letters left between them in the word as they have in the series?
  • Q2. Difference between string object and string literal and string buffer.. given array of strings and need to sort them and then array -(8, 6, 9,5,7,7) target -14 need to fi ...read more
  • Q3. Why world needs programming? Which Lang you prefer? What is oops? Pillars of opps? What is datatype? What is operating system!
View all 50 questions

Infosys System Engineer Hardware Interview Experiences

100 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 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 

It was a like a general aptitude test with Reasoning, Quantitative, verbal, programming fundamental.

Round 3 - Technical 

(1 Question)

  • Q1. It was a good interview round starting with introduction and college projects, then one easy to medium level coding problem and few questions on SQL.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for aptitude round as interview will not be very tough.

I applied via Company Website and was interviewed in Apr 2022. There were 2 interview rounds.

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 

General aptitude psudeo codes mainly mathmatics numerical ability

Interview Preparation Tips

Interview preparation tips for other job seekers - Honest skills mention in resume and like what you have good knowledge about that and prepare some basic knowledge about coding actually iam from mechanical branch iam only learn c and java(basics )

System Engineer Hardware Interview Questions Asked at Other Companies

asked in Infosys
Q1. How many such letter-pairs are there in the word SERVANT, having ... read more
asked in TCS
Q2. What is the difference between list and tuple (in python)?
asked in Infosys
Q3. Difference between string object and string literal and string bu ... read more
asked in TCS
Q4. 1. Roles and Responsibilities 2. Work experiences and technical s ... read more
asked in TCS
Q5. Can we use a continue statement outside loops?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 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 - Coding Test 

Basic to intermediate level programming questions. To crack the coding round you should have good understanding of data structures, at least one programming language and good experience solving logical coding problems. I prefer you try hackerrank or leetcode problems before attending the coding round and also utilize other resources like web articles, youtube videos etc.

Round 3 - HR 

(3 Questions)

  • Q1. What is the certificate you got from coursera? (looking at my resume)
  • Ans. It is a certificate for completing the python data structures course. The course was provided by university of Michigan.
  • Answered Anonymously
  • Q2. How can I learn python? consider I'm a newbie
  • Ans. 

    Learning Python as a newbie

    • Start with basic syntax and data types

    • Practice coding exercises and challenges

    • Read documentation and watch tutorials

    • Join online communities and forums for support

    • Work on personal projects to apply knowledge

  • Answered by AI
  • Q3. You can start from learning basic concepts of object oriented programming and data structures then move on to learning the fundamentals like conditional statements, loops, functions and classes. Once you a...

Interview Preparation Tips

Interview preparation tips for other job seekers - I got a direct call to HR round, and I just had two questions. Please note this might not be your case, some people can get called to technical round before the HR round, If so, be prepared for technical questions related to that role. Also be prepared to explain the projects you did in college if you are a fresher. Some HR can ask many questions to make a decision, so you should not get nervous and face each question with confidence.

Make sure you give responses positively. Have an answer for everything, even if you don't know something, still tell them how you can find the answer or where can you look for the answer. HR measures how positive you are and also how confident you are. So be positive and keep your answers brief, keep it concise.

Good luck you got this!

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Relevant experience in java and Java related questions which are in depth in knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - try excel in the pre-requisites for the job role

Infosys interview questions for designations

 System Engineer

 (1.1k)

 Hardware Engineer

 (1)

 Assistant System Engineer

 (16)

 System Software Engineer

 (6)

 Junior System Engineer

 (3)

 Network & System Engineer

 (1)

 System Test Engineer

 (1)

 System Engineer Analyst

 (1)

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

I applied via Walk-in and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Hack with infy contest

Round 3 - Coding Test 

Hack with infy contest

Round 4 - Technical 

(1 Question)

  • Q1. Whether a this __ number is a prime number?
  • Ans. 

    A prime number is a number greater than 1 that can only be divided by 1 and itself.

    • A prime number has exactly two distinct positive divisors: 1 and itself.

    • Examples of prime numbers include 2, 3, 5, 7, 11, 13, 17, etc.

    • To determine if a number is prime, check if it is divisible by any number other than 1 and itself.

  • Answered by AI

Get interview-ready with Top Infosys Interview Questions

I applied via Referral and was interviewed in Nov 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is an Array in C?
  • Ans. 

    An array in C is a collection of similar data types stored in contiguous memory locations.

    • Arrays are declared using square brackets []

    • Elements in an array can be accessed using their index number

    • Arrays can be initialized during declaration

    • Arrays can be passed as arguments to functions

    • Example: int arr[5] = {1, 2, 3, 4, 5};

    • Example: printf("%d", arr[2]); // Output: 3

  • Answered by AI
  • Q2. WHAT IS A Pointer IN C?
  • Ans. 

    A pointer in C is a variable that stores the memory address of another variable.

    • Pointers are used to manipulate data directly in memory.

    • They can be used to pass data between functions efficiently.

    • Pointers can be used to dynamically allocate memory.

    • Example: int *ptr; ptr = # *ptr = 10; // num now equals 10

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys System Engineer Hardware interview:
  • C language
Interview preparation tips for other job seekers - Don't fake things. Be energetic but polite. Know your plus points and try to promote many of them to get a positive impression.

Skills evaluated in this interview

I was interviewed in Sep 2021.

Interview Questionnaire 

1 Question

  • Q1. Interviwer asked me about my projects. Then questions on my projects. Then he asked what was my role. I said I was team leader.Then he asked about remaining person's role in the projects. Difficulties face...

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through the basic concepts of java, c or which languages you know. And make sure that you are ready to answer on any topic which you have mentioned in resume. Be ready to answer about projects. Stay cool and answer without fear.

I applied via Company Website and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Self Introduction, Project in Btech, Dynamic memory allocation, Difference between Tuple and a list and which one is effective and why?. Asked for output in python by sharing his screen. Why Infosys?. I ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold. And don't act like you know the answer when you don't. Being honest with an "I'm sorry, I'm not sure, I should read more on that" will save your time and the HR's time as well. Although you do have not an accurate answer, try bringing a piece of information to the table with confidence. Don't be serious-faced. Have a genuine smile and wish them more success in the long run at Infosys. One kind gesture will make their day!

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Coding challenge using strings and arrays and about previous company and work I have done and reason to join infosys
Round 3 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Location or DC I want to join

Interview Preparation Tips

Interview preparation tips for other job seekers - Be genuine about what have you done in previous companies and rest all depends on the interviewer

I applied via Company Website and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

They ask Quantitative aptitude for basic numeracy, Logical reasoning to determine logical thinking and Verbal reasoning to test comprehension skills of the candidate. They also ask some Pseudo code questions which is basic coding questions.

Round 2 - Interview 

(1 Question)

  • Q1. It is different for everyone but for freshers it mainly focuses on any one programming language and having some OOPS knowledge.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not hesitate in interview. Be calm and confident. Improve ur aptitude and technical skills.

Infosys Interview FAQs

How many rounds are there in Infosys System Engineer Hardware 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 Hardware 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, Application Development, Test Cases and Java.
What are the top questions asked in Infosys System Engineer Hardware interview?

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

  1. Difference between string object and string literal and string buffer.. given a...read more
  2. Why world needs programming? Which Lang you prefer? What is oops? Pillars of o...read more
  3. Describe difference between data hiding and abstracti...read more
How long is the Infosys System Engineer Hardware interview process?

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

Tell us how to improve this page.

Infosys System Engineer Hardware Interview Process

based on 57 interviews

5 Interview rounds

  • Aptitude Test Round - 1
  • Technical Round
  • Aptitude Test Round - 2
  • Personal Interview1 Round - 1
  • Personal Interview1 Round - 2
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Infosys System Engineer Hardware Salary
based on 8.5k salaries
₹3 L/yr - ₹5.4 L/yr
34% less than the average System Engineer Hardware Salary in India
View more details

Infosys System Engineer Hardware Reviews and Ratings

based on 663 reviews

3.4/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

2.5

Salary

3.9

Job security

3.7

Company culture

2.4

Promotions

3.1

Work satisfaction

Explore 663 Reviews and Ratings
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