Upload Button Icon Add office photos

Filter interviews by

HCL Infosystems Computer Hardware Engineer Interview Questions and Answers

Updated 17 Sep 2024

HCL Infosystems Computer Hardware Engineer Interview Experiences

1 interview found

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

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Hardware and system service
  • Q2. System service and installation

Interview questions from similar companies

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

I applied via campus placement at SRM Institute of Science & Technology, Chennai and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Prepare with all the basic aptitude test. As I went through college placement it was smooth. From this 3/4 of the peoples are selected.

Round 2 - Technical 

(2 Questions)

  • Q1. It is both Technical and HR
  • Q2. They asked whatever is mentioned the resume in detail.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have some strong Projects. Apply for mass recruitment as it has the high chance of selection.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Tcs nqt exam. Need to prepare.

Round 2 - Coding Test 

Given 2 questions. One easy one medium level.

Round 3 - Technical 

(2 Questions)

  • Q1. Concepts of oops.
  • Q2. They will ask what's written on you resume so prepare your resume well.
Round 4 - HR 

(3 Questions)

  • Q1. Are you willing reallocate anywhere?
  • Q2. Are you willing to join?
  • Q3. Name of company ceo.

Interview Preparation Tips

Topics to prepare for TCS System Engineer Hardware interview:
  • OOPS
  • DBMS
  • SQL
  • Project
  • Resume
Interview preparation tips for other job seekers - Be confident and if you pass tcs nqt then prepare your resume. They will ask from resume only.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is operating system ? Ans. Operating system is system software it is an interface between user and computer hardware. It is a single operating system
  • Ans. 

    An operating system is system software that serves as an interface between users and computer hardware.

    • Operating system is responsible for managing computer resources and providing a platform for running applications.

    • It controls and coordinates the hardware and software components of a computer system.

    • Examples of operating systems include Windows, macOS, Linux, and Android.

    • Operating systems provide services such as fil...

  • Answered by AI
  • Q2. How many types Server ? Ans. There are six commanly Server type 1. Web Server 2. Application Server 3. Database Server 4. Mail. Server 5. FTP Server ...
  • Ans. 

    There are six commonly known types of servers: Web, Application, Database, Mail, FTP, and DNS servers.

    • Web servers handle HTTP requests and deliver web pages to clients.

    • Application servers provide a platform for running applications and managing resources.

    • Database servers store and manage databases, allowing access and retrieval of data.

    • Mail servers handle email communication, including sending, receiving, and storing m...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Aptitude Test 

100 mins test covered almost all the areas can get the syllabus to practice from yputube

Round 2 - Technical 

(1 Question)

  • Q1. Basics oops DSA Java SQL
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. About previous projects
  • Q2. About triggers and joins

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple Easy and basic questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Computer hardware & networking
Round 2 - Cctv Engineer 

(1 Question)

  • Q1. CCTV installation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at HMR Institute of Technology and Management, Delhi

Round 1 - Aptitude Test 

Speed, Distance, time

Round 2 - Technical 

(2 Questions)

  • Q1. How will you display top 5 rows from a table?
  • Ans. 

    Use SQL query with LIMIT clause to display top 5 rows from a table.

    • Use SELECT statement to retrieve data from the table

    • Add LIMIT 5 at the end of the query to display only the top 5 rows

  • Answered by AI
  • Q2. What is abstraction in java?
  • Ans. 

    Abstraction in Java is the concept of hiding the implementation details and showing only the necessary features of an object.

    • Abstraction allows you to define the structure of an object without specifying the implementation details.

    • It helps in reducing complexity by hiding unnecessary details and only showing the essential parts.

    • Abstract classes and interfaces are used to achieve abstraction in Java.

    • Example: Abstract cl...

  • Answered by AI

Skills evaluated in this interview

System Engineer Hardware Interview Questions & Answers

TCS user image madhumitha nagarajan

posted on 27 Apr 2024

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

I applied via Job Fair and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions along with one coding question. you can choose whichever language you are comfortable with

Round 2 - Technical 

(5 Questions)

  • Q1. Basic technical questions . It was a smooth process. Be prepared with basics
  • Q2. Prime number code to be written
  • Ans. 

    Code to generate prime numbers in an array

    • Create a function to check if a number is prime

    • Iterate through numbers and add prime numbers to an array

    • Return the array of prime numbers

  • Answered by AI
  • Q3. Object Oriented concepts in Java
  • Ans. 

    Object Oriented concepts in Java include classes, objects, inheritance, polymorphism, and encapsulation.

    • Classes are blueprints for objects, defining attributes and behaviors.

    • Objects are instances of classes, containing data and methods.

    • Inheritance allows a class to inherit attributes and methods from another class.

    • Polymorphism enables objects to be treated as instances of their parent class.

    • Encapsulation restricts acce

  • Answered by AI
  • Q4. Explain data encapsulation and data hiding
  • Ans. 

    Data encapsulation is the bundling of data with the methods that operate on that data, while data hiding is the concept of hiding the implementation details of a class from the outside world.

    • Data encapsulation bundles data and methods together to protect data from outside interference.

    • Data hiding hides the implementation details of a class, allowing only necessary information to be accessed.

    • Encapsulation helps in achie...

  • Answered by AI
  • Q5. Difference between method overriding and overloading
  • Ans. 

    Method overriding is when a subclass provides a specific implementation of a method that is already provided by its parent class, while method overloading is when multiple methods have the same name but different parameters.

    • Method overriding involves inheritance and is used to provide a specific implementation of a method in a subclass.

    • Method overloading involves having multiple methods with the same name but different...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Offcampus assessment round , and if selected next in the f2f round with technical round and HR round

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is Gateway ? Ans. Gateway is a hardware device that is used to connect two dissimilar type of network. it allows us to send and receive data through the internet even it is LAN network
  • Ans. 

    A gateway is a hardware device that connects two dissimilar types of networks, allowing data to be sent and received between them.

    • Gateway acts as an entry and exit point for data traffic between networks

    • It translates data from one format to another to enable communication between networks

    • Examples include routers, switches, and firewalls that serve as gateways between LAN and WAN networks

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - thank you.

Skills evaluated in this interview

HCL Infosystems Interview FAQs

How many rounds are there in HCL Infosystems Computer Hardware Engineer interview?
HCL Infosystems interview process usually has 1 rounds. The most common rounds in the HCL Infosystems interview process are Technical.
What are the top questions asked in HCL Infosystems Computer Hardware Engineer interview?

Some of the top questions asked at the HCL Infosystems Computer Hardware Engineer interview -

  1. System service and installat...read more
  2. Hardware and system serv...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
Tata Group Interview Questions
4.2
 • 357 Interviews
View all
HCL Infosystems Computer Hardware Engineer Salary
based on 7 salaries
₹0.8 L/yr - ₹3.1 L/yr
12% less than the average Computer Hardware Engineer Salary in India
View more details

HCL Infosystems Computer Hardware Engineer Reviews and Ratings

based on 5 reviews

3.1/5

Rating in categories

2.6

Skill development

3.0

Work-life balance

4.7

Salary

2.1

Job security

3.9

Company culture

2.1

Promotions

3.1

Work satisfaction

Explore 5 Reviews and Ratings
Technical Lead
326 salaries
unlock blur

₹7 L/yr - ₹21.5 L/yr

Senior Software Engineer
231 salaries
unlock blur

₹4.2 L/yr - ₹15.5 L/yr

Senior Analyst
226 salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

Software Engineer
211 salaries
unlock blur

₹2 L/yr - ₹9.4 L/yr

Lead Engineer
196 salaries
unlock blur

₹4 L/yr - ₹17 L/yr

Explore more salaries
Compare HCL Infosystems with

HCLTech

3.5
Compare

Wipro

3.7
Compare

Tech Mahindra

3.6
Compare

TCS

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