Logo

Get AmbitionBox App

Faster and better experience!

AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Campus placements

      Interviews questions for 2K+ colleges

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

For Employers
logo
Premium Employer

i

This company page is being actively managed by HCLTech Team. If you also belong to the team, you can get access from here

HCLTech Verified Tick Work with us arrow

Compare button icon Compare button icon Compare
3.5

based on 38.6k Reviews

  • Why join us
  • Reviews
    38.6k
  • Salaries
    3.4L
  • Interviews
    4k
  • Jobs
    290
  • Benefits
    4.3k
  • Photos
    58
  • Posts
    30

Filter interviews by

HCLTech Graduate Engineer Trainee (Get) Interview Questions and Answers

Updated 10 Apr 2025

7 Interview questions

A Graduate Engineer Trainee (Get) was asked 1mo ago
Q. What are the steps to implement a floating video advertisement on a website?
Ans. 

Implementing a floating video ad involves HTML, CSS, and JavaScript for positioning and functionality.

  • 1. Create an HTML structure for the video ad using <video> tag or an <iframe> for embedding.

  • 2. Use CSS to style the video ad, ensuring it floats over the content. Example: position: fixed; bottom: 10px; right: 10px;

  • 3. Implement JavaScript to control the ad's behavior, like play/pause or close functiona...

A Graduate Engineer Trainee (Get) was asked 3mo ago
Q. Explain OOPS concepts in detail.
Ans. 

OOPs concepts are fundamental principles of object-oriented programming like inheritance, polymorphism, encapsulation, and abstraction.

  • Inheritance: Allows a class to inherit properties and behavior from another class.

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

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

  • Abstraction: Hides the complex implem...

Graduate Engineer Trainee (Get) Interview Questions Asked at Other Companies

asked in JBM Group
Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Diffe ... read more
View answers (2)
asked in Johnson Controls
Q2. How would you check the continuity of a wire inside a wall if the ... read more
View answers (15)
asked in Larsen & Toubro Limited
Q3. What happens when there is a large air void in concrete?
View answers (21)
asked in Shapoorji Pallonji Group
Q4. What are the different types of concrete?
View answers (28)
asked in L&T Construction
Q5. What is M25 grade concrete?
View answers (22)
View All
A Graduate Engineer Trainee (Get) was asked 3mo ago
Q. Write a few simple SQL queries.
Ans. 

SQL queries for Graduate Engineer trainee interview

  • SELECT * FROM table_name;

  • SELECT column1, column2 FROM table_name WHERE condition;

  • INSERT INTO table_name (column1, column2) VALUES (value1, value2);

  • UPDATE table_name SET column1 = value1 WHERE condition;

  • DELETE FROM table_name WHERE condition;

A Graduate Engineer Trainee (Get) was asked 5mo ago
Q. What is the difference between C and C++?
Ans. 

C is a procedural programming language while C++ is an object-oriented programming language with features like classes and inheritance.

  • C is a procedural programming language while C++ is a multi-paradigm language with support for object-oriented programming.

  • C does not support classes and objects, while C++ does.

  • C uses structures for data organization, while C++ uses classes.

  • C does not have features like inheritanc...

🔥 Asked by recruiter 2 times
A Graduate Engineer Trainee (Get) was asked 5mo ago
Q. What is an operating system?
Ans. 

Operating system is a software that manages computer hardware and provides services for computer programs.

  • Manages computer hardware resources

  • Provides services for computer programs

  • Controls input/output devices

  • Manages memory and processes

  • Examples: Windows, macOS, Linux

A Graduate Engineer Trainee (Get) was asked 13 Dec 2021
Q. What are DDL, DML, and DCL?
Ans. 

DDL, DML, and DCL are three types of SQL commands used to manipulate databases.

  • DDL (Data Definition Language) is used to define the database schema and structure.

  • DML (Data Manipulation Language) is used to manipulate data within the database.

  • DCL (Data Control Language) is used to control access to the database.

  • Examples of DDL commands include CREATE, ALTER, and DROP.

  • Examples of DML commands include SELECT, INSERT,...

A Graduate Engineer Trainee (Get) was asked 13 Dec 2021
Q. Why there is a difference in ascent?
Ans. 

The difference in ascent is due to various factors such as altitude, air pressure, temperature, and wind speed.

  • Altitude affects the air pressure and density, which in turn affects the ascent.

  • Temperature affects the air density, which affects the ascent.

  • Wind speed affects the ascent by creating turbulence and changing the direction of the aircraft.

  • Different aircraft have different ascent rates due to their design a...

Are these interview questions helpful?

HCLTech Graduate Engineer Trainee (Get) Interview Experiences

63 interviews found

Graduate Engineer Trainee (Get) Interview Questions & Answers

user image Anonymous

posted on 29 Mar 2025

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Do you know about threads?
  • Ans. 

    Threads are lightweight processes that enable concurrent execution within a program, sharing resources for efficiency.

    • Threads share the same memory space, allowing for faster communication.

    • They can improve application performance by utilizing multi-core processors.

    • Example: In a web server, one thread can handle multiple client requests simultaneously.

    • Threads can be created using libraries like pthreads in C or the Thre...

  • Answered by AI
    Add your answer
  • Q2. How is the backend utilized for authorized API calls?
  • Ans. 

    The backend manages authorized API calls through authentication, authorization, and secure data handling.

    • Authentication verifies user identity using tokens or credentials (e.g., JWT).

    • Authorization checks user permissions to access specific resources (e.g., role-based access).

    • Secure data transmission is ensured using HTTPS to protect sensitive information.

    • Rate limiting is implemented to prevent abuse of API calls (e.g.,...

  • Answered by AI
    Add your answer
  • Q3. What are the steps to implement a floating video advertisement on a website?
  • Ans. 

    Implementing a floating video ad involves HTML, CSS, and JavaScript for positioning and functionality.

    • 1. Create an HTML structure for the video ad using <video> tag or an <iframe> for embedding.

    • 2. Use CSS to style the video ad, ensuring it floats over the content. Example: position: fixed; bottom: 10px; right: 10px;

    • 3. Implement JavaScript to control the ad's behavior, like play/pause or close functionality....

  • Answered by AI
    Add your answer
  • Q4. What is the recent tech related news that you have heard?
  • Ans. 

    AI advancements continue to dominate tech news, with new models enhancing productivity and creativity across various industries.

    • OpenAI released ChatGPT-4, improving natural language understanding and generation.

    • Google announced updates to its AI tools, enhancing search capabilities and user experience.

    • Microsoft integrated AI features into Office 365, boosting productivity for users.

    • AI-generated art and music are gainin...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied through on-campus recruitment. Round 1 consisted of a multiple-choice question (MCQ) test with five sections. Round 2 was a group discussion (GD) round. Round 3 involved an in-person technical interview. Round 4 focused on business-related human resources, and Round 5 was a human resources interview.
Anonymous

Graduate Engineer Trainee (Get) Interview Questions & Answers

user image Anonymous

posted on 9 Sep 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me About Yourself
  • Ans. 

    I am a recent graduate with a degree in engineering, eager to learn and grow in a professional setting.

    • Recent graduate with a degree in engineering

    • Passionate about learning and growing in a professional setting

    • Strong problem-solving skills

    • Experience with engineering projects during studies

  • Answered by AI
    Add your answer
  • Q2. What would you do in your free time
  • Ans. 

    In my free time, I enjoy reading books, playing sports, and volunteering at local organizations.

    • Reading books - helps me relax and expand my knowledge

    • Playing sports - keeps me active and healthy

    • Volunteering - gives me a sense of fulfillment and helps the community

  • Answered by AI
    Add your answer
Anonymous

Graduate Engineer Trainee (Get) Interview Questions & Answers

user image 20bcs1585_Anubhav anand

posted on 9 Jul 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Overall easy not much vast

Round 2 - Coding Test 

2 questions but they were easy

Round 3 - HR 

(2 Questions)

  • Q1. Tell me your background
  • Add your answer
  • Q2. Define your role in your projects
  • Add your answer
Round 4 - Technical 

(3 Questions)

  • Q1. Windows and browser related
  • Add your answer
  • Q2. Array stack and queue
  • Add your answer
  • Q3. Conditional statement based
  • Add your answer
Round 5 - HR 

(4 Questions)

  • Q1. Your role model
  • Add your answer
  • Q2. Tell me about yourself
  • Add your answer
  • Q3. Situation of conflict between manager and you
  • Add your answer
  • Q4. How much you will rate yourself
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on basic dsa overall was easy
Anonymous

Graduate Engineer Trainee (Get) Interview Questions & Answers

user image Anonymous

posted on 10 Apr 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Tell me something about yourself
  • Add your answer
  • Q2. What is your role model
  • Add your answer
  • Q3. What is your strent
  • Add your answer
  • Q4. What is your weaknesses
  • Add your answer
Anonymous

Graduate Engineer Trainee (Get) Interview Questions & Answers

user image Anonymous

posted on 1 Feb 2024

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

Aptitude Based on common topics

Round 2 - Coding Test 

2 codings questions . language is your preference

Round 3 - Technical 

(1 Question)

  • Q1. Basic Technical questions
  • Add your answer
Round 4 - Technical 

(1 Question)

  • Q1. Advanced Technical questions
  • Add your answer
Round 5 - HR 

(1 Question)

  • Q1. Normal and general management questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and ask questions to hr
Anonymous

Graduate Engineer Trainee (Get) Interview Questions & Answers

user image Anonymous

posted on 11 Aug 2024

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

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

Round 1 - Aptitude Test 

Good question, time and work, hcf lcm

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in engineering, eager to learn and contribute to a dynamic team.

    • Graduated with a Bachelor's degree in Engineering

    • Completed internships at XYZ Company and ABC Company

    • Proficient in CAD software and project management

    • Strong problem-solving and communication skills

  • Answered by AI
    Add your answer
  • Q2. Why do you want to work in Hcl Tech
  • Ans. 

    I want to work in HCL Tech because of its reputation for innovation, global presence, and opportunities for career growth.

    • HCL Tech is known for its innovative solutions in the technology industry

    • The company has a strong global presence, providing opportunities to work on diverse projects

    • HCL Tech offers a conducive environment for career growth and development

    • I admire the company's commitment to excellence and customer ...

  • Answered by AI
    Add your answer
Anonymous

Graduate Engineer Trainee (Get) Interview Questions & Answers

user image Anonymous

posted on 22 Dec 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I appeared for an interview before Dec 2023.

Round 1 - Technical 

(1 Question)

  • Q1. What are the four pillars of OOPs
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on the skills you mentioned in resume and communication skills is a must.
Anonymous

Graduate Engineer Trainee (Get) Interview Questions & Answers

user image Anonymous

posted on 20 Feb 2024

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

I applied via Company Website and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude & reasoning questions

Round 2 - Technical 

(1 Question)

  • Q1. Resume based questions
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Location, package discussion
  • Add your answer
Anonymous

Graduate Engineer Trainee (Get) Interview Questions & Answers

user image Riya Pandita

posted on 11 Feb 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions of networking were asked by the interviewer like - OSI model , TCPIP model ,Switch ,Hub,Router.
  • Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Add your answer
  • Q2. What is your long term goal
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and dive deep into domain for which you are applying.
Anonymous

Graduate Engineer Trainee (Get) Interview Questions & Answers

user image riya singh

posted on 27 Mar 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test questions are from indiabix.com

Round 2 - Technical 

(1 Question)

  • Q1. Interview questions related to subject of interest
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Daily activity related question
  • Add your answer
Anonymous

What people are saying about HCLTech

View All
a software developer ii
2w
Seeking Career Advice: Choosing Between 3 Offers
Hi everyone, I'm currently exploring new opportunities and would love to hear your thoughts on which offer might be the best fit based on my priorities. Here's my current situation: Experience: 4.2 years Current CTC: 9.8 LPA (8.5 fixed + 1.3 variable) Tech Stack: Primarily Golang Current Location: Chennai I'm evaluating 3 offers: Option 1: HCL Software (a division of HCL Tech) Product: BigFix CTC: 16.5 LPA (15 fixed + 1.5 variable including 99K performance bonus) Location: Chennai Option 2: Infogain CTC: 18 LPA (breakup not shared yet) Location: Bangalore Option 3: Msys Technologies CTC: 19 LPA (breakup not shared yet) Location: Chennai or Bangalore What I’m looking for: A good work-life balance Opportunities for learning and growth Preferably a strong engineering/product culture Salary is not my top priority, but of course, it’s a factor NOTE: All three offer hybrid work.
Got a question about HCLTech?
Ask anonymously on communities.
More about working at HCLTech
golden leaf award AmbitionBox awards

#13 Best Mega Company - 2021

golden leaf award
  • HQ - Noida, Uttar Pradesh
  • IT Services & Consulting
  • 1 Lakh+ Employees (India)
  • Public
  • Telecom
  • Education & Training
  • Hardware & Networking
  • Banking
  • Emerging Technologies
  • Software Product

HCLTech Interview FAQs

How many rounds are there in HCLTech Graduate Engineer Trainee (Get) interview?
HCLTech interview process usually has 2-3 rounds. The most common rounds in the HCLTech interview process are Aptitude Test, HR and Resume Shortlist.
How to prepare for HCLTech Graduate Engineer Trainee (Get) 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 HCLTech. The most common topics and skills that interviewers at HCLTech expect are Communication Skills, Data Center, Networking, Six Sigma Projects and Analytical.
What are the top questions asked in HCLTech Graduate Engineer Trainee (Get) interview?

Some of the top questions asked at the HCLTech Graduate Engineer Trainee (Get) interview -

  1. Why there is a difference in asce...read more
  2. What is DDL DML D...read more
  3. What are the steps to implement a floating video advertisement on a websi...read more
How long is the HCLTech Graduate Engineer Trainee (Get) interview process?

The duration of HCLTech Graduate Engineer Trainee (Get) interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

HCLTech Interviews By Designations

  • HCLTech Software Engineer Interview Questions
  • HCLTech Technical Lead Interview Questions
  • HCLTech Lead Engineer Interview Questions
  • HCLTech Analyst Interview Questions
  • HCLTech Senior Analyst Interview Questions
  • HCLTech Senior Software Engineer Interview Questions
  • HCLTech Technical Specialist Interview Questions
  • HCLTech Software Developer Interview Questions
  • Show more
  • HCLTech Senior Specialist Interview Questions
  • HCLTech Senior Technical Lead Interview Questions

Interview Questions for Popular Designations

  • Graduate Trainee Interview Questions
  • Graduate Apprentice Trainee Interview Questions
  • Graduate Apprenticeship Trainee Interview Questions
  • Graduate Engineer Interview Questions
  • Production Graduate Engineer Trainee Interview Questions
  • Graduate Student Interview Questions
  • Graduate Apprentice Interview Questions
  • Post Graduate Engineer Trainee [pget] Interview Questions
  • Show more
  • Graduate Engineer Apprentice Interview Questions
  • Civil Graduate Engineer Trainee Interview Questions
logo
Join HCLTech Find your spark and discover what drives you forward

Graduate Engineer Trainee (Get) Interview Questions from Similar Companies

LTIMindtree
LTIMindtree Graduate Engineer Trainee (Get) Interview Questions
3.7
 • 76 Interviews
TCS
TCS Graduate Engineer Trainee (Get) Interview Questions
3.6
 • 25 Interviews
Coforge
Coforge Graduate Engineer Trainee (Get) Interview Questions
3.3
 • 17 Interviews
Cognizant
Cognizant Graduate Engineer Trainee (Get) Interview Questions
3.7
 • 14 Interviews
L&T Technology Services
L&T Technology Services Graduate Engineer Trainee (Get) Interview Questions
3.3
 • 13 Interviews
Mercedes-Benz Research and Development India
Mercedes-Benz Research and Development India Graduate Engineer Trainee (Get) Interview Questions
3.8
 • 11 Interviews
Tech Mahindra
Tech Mahindra Graduate Engineer Trainee (Get) Interview Questions
3.5
 • 7 Interviews
Infosys
Infosys Graduate Engineer Trainee (Get) Interview Questions
3.6
 • 5 Interviews
Accenture
Accenture Graduate Engineer Trainee (Get) Interview Questions
3.8
 • 4 Interviews
Wipro
Wipro Graduate Engineer Trainee (Get) Interview Questions
3.7
 • 3 Interviews
View all
HCLTech Graduate Engineer Trainee (Get) Salary
based on 1.9k salaries
₹2 L/yr - ₹6 L/yr
17% more than the average Graduate Engineer Trainee (Get) Salary in India
View more details

HCLTech Graduate Engineer Trainee (Get) Reviews and Ratings

based on 182 reviews

3.6/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.1

Salary

3.9

Job security

3.7

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 182 Reviews and Ratings
HCLTech Salaries in India
Software Engineer
23.9k salaries
unlock blur

₹1.9 L/yr - ₹8 L/yr

Technical Lead
22.1k salaries
unlock blur

₹7 L/yr - ₹28.5 L/yr

Senior Software Engineer
16.4k salaries
unlock blur

₹4 L/yr - ₹17 L/yr

Lead Engineer
16.1k salaries
unlock blur

₹4.1 L/yr - ₹14 L/yr

Analyst
15.2k salaries
unlock blur

₹0.8 L/yr - ₹6.6 L/yr

Explore more salaries
Compare HCLTech with
TCS

TCS

3.6
Compare
Wipro

Wipro

3.7
Compare
Accenture

Accenture

3.8
Compare
Cognizant

Cognizant

3.7
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • HCLTech Interview Questions >
  • HCLTech Graduate Engineer Trainee (Get) Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Helping over 1 Crore job seekers every month in choosing their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

6 Lakh+

Interviews

1 Crore+

Users/Month

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Campus Placements
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2026
  • ABECA 2025 winners awaited tag
  • ABECA 2024
  • AmbitionBox Best Places to Work 2022
  • AmbitionBox Best Places to Work 2021
  • Invite employees to rate
AmbitionBox
  • About Us
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter