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
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. OOPs concepts details
  • Q2. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good command programming fundamentals and basic programming questions.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions and one basic coding question

Round 2 - Technical 

(3 Questions)

  • Q1. What are pointers?
  • Q2. Projects I worked on?
  • Q3. What do you know about AI-ML?

Interview Preparation Tips

Interview preparation tips for other job seekers - Have command over at least one programming language preferably Java

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
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What are pointers in c++
  • Ans. 

    Pointers in C++ are variables that store memory addresses of other variables.

    • Pointers are used to access and manipulate memory directly.

    • They are denoted by an asterisk (*) before the variable name.

    • Example: int *ptr; // declares a pointer to an integer variable

    • Example: ptr = # // assigns the address of 'num' to the pointer

  • Answered by AI
  • Q2. Html, Css questions
  • Q3. What are html tags?
  • Ans. 

    HTML tags are used to define the structure and content of a web page.

    • HTML tags are enclosed in angle brackets, like .

    • They are used to define elements such as headings, paragraphs, links, images, etc.

    • Tags are often used in pairs, with an opening tag and a closing tag .

    • Some tags are self-closing, like .

    • Attributes can be added to tags to provide additional information or functionality.

Answered by AI
  • Q4. What are different type of Css styling?
  • Ans. 

    Different types of CSS styling include inline, internal, external, and imported stylesheets.

    • Inline CSS is applied directly to an HTML element using the style attribute.

    • Internal CSS is defined within the head section of an HTML document using the style tag.

    • External CSS is stored in a separate file and linked to the HTML document using the link tag.

    • Imported stylesheets allow for modular CSS by importing one stylesheet in

  • Answered by AI
  • Q5. Classes and objects in c++
  • Ans. 

    Classes and objects in C++ are used to create user-defined data types with their own properties and behaviors.

    • Classes are used to define the blueprint for objects, containing data members and member functions.

    • Objects are instances of classes, created using the 'new' keyword.

    • Encapsulation, inheritance, and polymorphism are key concepts in object-oriented programming with C++.

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Infosys Freshers interview is easy just focus on basics if applying for systems engineer role, if for power programmer , then practice more coding for it

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    Easy
    Process Duration
    4-6 weeks
    Result
    Selected Selected

    I applied via Referral and was interviewed before Oct 2023. There were 2 interview rounds.

    Round 1 - Aptitude Test 

    Include aptitude questions and english grammar

    Round 2 - Technical 

    (2 Questions)

    • Q1. Explain all sortings along with time complexity
    • Ans. 

      Explanation of various sorting algorithms and their time complexities

      • Bubble Sort - O(n^2)

      • Selection Sort - O(n^2)

      • Insertion Sort - O(n^2)

      • Merge Sort - O(n log n)

      • Quick Sort - O(n log n)

      • Heap Sort - O(n log n)

      • Radix Sort - O(nk)

    • Answered by AI
    • Q2. Some scenerio based questions

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Easy interview

    Skills evaluated in this interview

    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
    Easy
    Process Duration
    6-8 weeks
    Result
    Selected Selected

    I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

    Round 1 - Aptitude Test 

    Need to prepare for some quantitative aptitude, Logical reasoning,Time and work, Profit and Loss , Permutation and combination ,LCM and HCF, pseudo code, Verbal reasoning,

    Round 2 - Technical 

    (3 Questions)

    • Q1. What are the languages that support OOPS concept
    • Ans. 

      Languages that support OOPS concept include Java, C++, Python, C#, and Ruby.

      • Java

      • C++

      • Python

      • C#

      • Ruby

    • Answered by AI
    • Q2. What are the oops concepts?
    • Ans. 

      Object-oriented programming concepts that focus on data encapsulation, inheritance, polymorphism, and abstraction.

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

      • Inheritance: Ability of a class to inherit properties and behavior from another class

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

      • Abstraction: Hiding the complex implementation details

    • Answered by AI
    • Q3. What is Abstraction?
    • Ans. 

      Abstraction is the process of hiding complex details and showing only the essential features of an object or system.

      • Abstraction allows us to focus on what an object does instead of how it does it

      • It helps in reducing complexity and improving efficiency

      • Examples include using a car without knowing the internal combustion engine details, or using a smartphone without understanding the hardware components

    • Answered by AI

    Get interview-ready with Top Infosys Interview Questions

    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    Selected Selected

    I applied via Company Website and was interviewed before Jun 2023. There were 2 interview rounds.

    Round 1 - Aptitude Test 

    The aptitude test consisted of basic questions. It is easy if you have joined any CRT classes. The next round was interview they just ask you about the project completed in your Internship, if you haven't done any internship you can tell about last year final semester project in detail.

    Round 2 - One-on-one 

    (2 Questions)

    • Q1. Tell me about yourself
    • Q2. Can you tell about your internship project, what was your exact contribution in the group project
    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Campus Placement and was interviewed before Oct 2023. There were 2 interview rounds.

    Round 1 - Aptitude Test 

    Quant and English written tests. Multiple choice questions.

    Round 2 - HR 

    (2 Questions)

    • Q1. How to resolve conflict among team members
    • Q2. How do you bring value to the organization
    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    Not Selected

    I applied via Job Portal and was interviewed before Sep 2023. There was 1 interview round.

    Round 1 - Technical 

    (2 Questions)

    • Q1. Regarding oops concepts
    • Q2. A coding question
    Interview experience
    4
    Good
    Difficulty level
    Easy
    Process Duration
    4-6 weeks
    Result
    Selected Selected

    I applied via Company Website and was interviewed before Dec 2023. There were 2 interview rounds.

    Round 1 - Aptitude Test 

    Basic aptitude test- including logic and reasoning

    Round 2 - Coding Test 

    Problem statement with program environment and compiler was provided.

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Brush up the basic topics
    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. They ask you about education. What do you do during free time
    • Q2. Tell me why should we hire you
    Round 3 - Aptitude Test 

    Time and work questions . Problem solving questions

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Polish aptitude skills. Improve communication 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