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

Compare button icon Compare button icon Compare
3.6

based on 33.8k Reviews

Filter interviews by

HCLTech Interview Questions, Process, and Tips for Freshers

Updated 20 Dec 2024

Top HCLTech Interview Questions and Answers for Freshers

View all 176 questions

HCLTech Interview Experiences for Freshers

Popular Designations

412 interviews found

Round 1 - HR 

(1 Question)

  • Q1. General introduction and previous job profile
Round 2 - Technical 

(1 Question)

  • Q1. Asked questions related Microsoft and outlook

Interview Preparation Tips

Interview preparation tips for other job seekers - All I can suggest you not to join HCL this company is full of harassment and unprofessional and will expect you to work like a slave not an employee so before joining read it a true warning for you DO NOT JOIN HCL

Service Desk Engineer Interview Questions asked at other Companies

Q1. What will you do if zoom application does not open?
View answer (2)

I applied via LinkedIn and was interviewed in Mar 2022. There were 4 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 

General maths according to 10th level, reasoning, general english , pseudocode.

Round 3 - Technical 

(1 Question)

  • Q1. Theory questions of related technical topic such as DBMS, OS & what u have selected and the main thing is your project description.
Round 4 - HR 

(1 Question)

  • Q1. Salary expectations, location.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your project work very gently & some theoratical topics.

Top HCLTech Software Engineer Interview Questions and Answers

Q1. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula - F(n) = F(n-1) + F(n-2), Where, F(1) = F(2) = 1 Provided N you have to find out the Nth Fibonacci Number. Input Fo... read more
View answer (4)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (168)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Newspaper Ad and was interviewed before Nov 2022. There were 5 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 - HR 

(1 Question)

  • Q1. As per JD, the questions will be asked.
Round 3 - Technical 

(1 Question)

  • Q1. Basics of networking, desktop support
Round 4 - One-on-one 

(1 Question)

  • Q1. Basic desktop support troubleshooting & MS Office apps related questions.
Round 5 - One-on-one 

(1 Question)

  • Q1. Project Lead has asked some basic technical skills

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're a fresher, grab the opportunity in HCL but dont stay here more tha 1 or 2 years.

Top HCLTech Senior Analyst Interview Questions and Answers

Q1. What is Active Directory? Difference between MDM and MAM. What do you know about Microsoft Intune? How does Azure Active directory work? What is Exchange Active Sync
View answer (1)

Senior Analyst Interview Questions asked at other Companies

Q1. Explain 3 statement financial model Calculating discount rate Could you walk me through the DCF model? Other valuation methods. What PE is ideal? What is the other matrix to value the company? Difference between IRR and CAGR. What is Bond Y... read more
View answer (1)

Project Management Officer trainee Interview Questions & Answers

user image Anonymous

posted on 28 Aug 2022

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

Round 1 - One-on-one 

(1 Question)

  • Q1. The first question is tell about yourself
Round 2 - Technical 

(1 Question)

  • Q1. How do you calculate date in excel

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and remember communication is the key.

Skills evaluated in this interview

HCLTech interview questions for popular designations

 Software Engineer

 (294)

 Technical Lead

 (179)

 Lead Engineer

 (154)

 Senior Software Engineer

 (107)

 Senior Analyst

 (106)

 Analyst

 (98)

 Technical Specialist

 (87)

 Software Developer

 (80)

Software Engineer Interview Questions & Answers

user image pratima singh

posted on 5 Nov 2022

I applied via Naukri.com and was interviewed before Nov 2021. There were 2 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 - Technical 

(7 Questions)

  • Q1. What string pool in java and why string is immutable
  • Ans. 

    String pool is a cache of string literals in Java. String is immutable to ensure security and efficiency.

    • String pool is a collection of unique string literals stored in heap memory.

    • When a new string is created, JVM checks if it already exists in the pool. If yes, it returns the reference to the existing object.

    • String immutability ensures that once a string is created, its value cannot be changed. This ensures security ...

  • Answered by AI
  • Q2. How we make a class immutable in java
  • Ans. 

    To make a class immutable in Java, we need to follow certain rules.

    • Make the class final so that it cannot be extended

    • Make all the fields private and final

    • Do not provide any setter methods

    • If the class has mutable fields, return a copy of the field instead of the original in getter methods

    • Ensure that any mutable objects passed to the constructor are not modified outside the class

    • Override equals() and hashCode() methods t

  • Answered by AI
  • Q3. What is singleton class in java
  • Ans. 

    Singleton class is a class that can have only one instance and provides a global point of access to it.

    • Singleton class is used when we need to ensure that only one instance of a class is created throughout the application.

    • It is implemented by making the constructor private and providing a static method to get the instance of the class.

    • Example: java.lang.Runtime is a singleton class that provides access to the runtime e...

  • Answered by AI
  • Q4. What is executor in multithreading and what is thread pool
  • Ans. 

    Executor is an interface that executes submitted tasks in a separate thread. Thread pool is a collection of threads that can be reused.

    • Executor provides a way to decouple task submission from task execution.

    • Thread pool manages a fixed number of threads and assigns tasks to them.

    • Executor framework provides a way to manage thread pools.

    • Example: Executors.newFixedThreadPool(10) creates a thread pool with 10 threads.

    • Exampl...

  • Answered by AI
  • Q5. Reverse a sentence coding questions and stock price highest profit when it will get kind of questions
  • Q6. Web services get ,put,post request
  • Q7. More about different status code

Interview Preparation Tips

Topics to prepare for HCLTech Software Engineer interview:
  • Java multithreading
Interview preparation tips for other job seekers - Some coding questions reverse a sentence and more focus on multithreading

Skills evaluated in this interview

Top HCLTech Software Engineer Interview Questions and Answers

Q1. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula - F(n) = F(n-1) + F(n-2), Where, F(1) = F(2) = 1 Provided N you have to find out the Nth Fibonacci Number. Input Fo... read more
View answer (4)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (168)

Get interview-ready with Top HCLTech Interview Questions

I applied via Company Website

Round 1 - Aptitude Test 

Arthamatic and reasoning

Round 2 - Technical 

(3 Questions)

  • Q1. Accounting basics and TAILLY ERP9 short term goal and long term goal family details
  • Q2. Tel me introduce yourself and TALLY ERP9
  • Q3. Work experience and working knowledge important

Interview Preparation Tips

Interview preparation tips for other job seekers - Fresher giving chance every one handle any switch vashion

Top HCLTech Financial Analyst Interview Questions and Answers

Q1. Can you tell me about the Golden rule of accounting?
View answer (2)

Financial Analyst Interview Questions asked at other Companies

Q1. Suppose you have 10000 US dollars with you, out of which you took a loan of 5000 US Dollars. Now suppose you have purchased two assets of 5000 US Dollars each, one through cash and other through bank loan. How would you show this transactio... read more
View answer (3)

Jobs at HCLTech

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

I applied via Naukri.com and was interviewed before Dec 2022. There were 3 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 - One-on-one 

(1 Question)

  • Q1. Introduction is first, then asked about the capital markets, equity ,and some more questions.
Round 3 - Technical 

(1 Question)

  • Q1. Asked about how to send the email in official manner.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and answer the questions.

Investment Banking Analyst Interview Questions asked at other Companies

Q1. What is Trade life cycle ?
View answer (3)

Software Engineer Interview Questions & Answers

user image chintha susmitha

posted on 3 Jul 2024

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

I applied via Software Jeevitham and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Why want to join in HCL?

Top HCLTech Software Engineer Interview Questions and Answers

Q1. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula - F(n) = F(n-1) + F(n-2), Where, F(1) = F(2) = 1 Provided N you have to find out the Nth Fibonacci Number. Input Fo... read more
View answer (4)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (168)
Round 1 - Aptitude Test 

The Graduate Requisite Exam (GRE), as well as the specialized tests required in order to get into medical (MCAT), law (LSAT), and business graduate programs, are also examples of multiple aptitude tests

Round 2 - Coding Test 

Master the basics, Research the company,
Focus on a programming language you're good at

Interview Preparation Tips

Interview preparation tips for other job seekers - Approach your job search like it is a 9 to 5 job. Put in the time each day. Think about yourself in terms of skill sets,

Top HCLTech Software Engineer Interview Questions and Answers

Q1. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula - F(n) = F(n-1) + F(n-2), Where, F(1) = F(2) = 1 Provided N you have to find out the Nth Fibonacci Number. Input Fo... read more
View answer (4)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (168)

I applied via Naukri.com and was interviewed in Aug 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

It'll easy u can score good if u have basic knowledge, focus on english

Round 2 - Coding Test 

Moderate
You have to solve Pseduco quiz
if u have knowledge about basic coding u can easily clear it

Round 3 - interview 

(2 Questions)

  • Q1. Based on project, database, oops concept
  • Q2. Array,fifo,Lifo,Oops concept,Dbms....

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidential, you u don't know answer directly say sorry i don't know...
Keep learning and researching

Top HCLTech Software Engineer Interview Questions and Answers

Q1. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula - F(n) = F(n-1) + F(n-2), Where, F(1) = F(2) = 1 Provided N you have to find out the Nth Fibonacci Number. Input Fo... read more
View answer (4)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (168)

HCLTech Interview FAQs

How many rounds are there in HCLTech interview for freshers?
HCLTech interview process for freshers usually has 2-3 rounds. The most common rounds in the HCLTech interview process for freshers are HR, Resume Shortlist and Technical.
How to prepare for HCLTech interview for freshers?
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, Customer Service, customer support, bpo and International Voice Process.
What are the top questions asked in HCLTech interview for freshers?

Some of the top questions asked at the HCLTech interview for freshers -

  1. what's difference between server.transfer and Response.redir...read more
  2. What is your strength programming langua...read more
  3. 1. What is a SMTP and how it's being used 2. What is ITIL and it's version 3. W...read more
How long is the HCLTech interview process?

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

Tell us how to improve this page.

HCLTech Interview Process for Freshers

based on 101 interviews in last 1 year

Interview experience

3.7
  
Good
View more

People are getting interviews through

based on 283 HCLTech interviews
Job Portal
Campus Placement
Company Website
WalkIn
Referral
Recruitment Consultant
35%
22%
15%
12%
5%
1%
10% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.
Join HCLTech Find your spark and discover what drives you forward

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10k Interviews
Accenture Interview Questions
3.9
 • 7.8k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.4k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 2.9k Interviews
LTIMindtree Interview Questions
3.9
 • 2.7k Interviews
Mphasis Interview Questions
3.4
 • 772 Interviews
View all

HCLTech Reviews and Ratings

based on 33.8k reviews

3.6/5

Rating in categories

3.4

Skill development

3.6

Work-Life balance

2.9

Salary & Benefits

3.8

Job Security

3.4

Company culture

2.7

Promotions/Appraisal

3.3

Work Satisfaction

Explore 33.8k Reviews and Ratings
Java Developer

Bangalore / Bengaluru

6-11 Yrs

Not Disclosed

IT Recruiter - Sourcer

Pune

3-6 Yrs

Not Disclosed

Hiring For MES PAS-X

Hyderabad / Secunderabad,

Chennai

+1

3-8 Yrs

₹ 5.5-15.5 LPA

Explore more jobs
Software Engineer
22.1k salaries
unlock blur

₹1.2 L/yr - ₹8 L/yr

Technical Lead
20.6k salaries
unlock blur

₹6.9 L/yr - ₹25 L/yr

Senior Software Engineer
15.3k salaries
unlock blur

₹4 L/yr - ₹16.5 L/yr

Lead Engineer
14.7k salaries
unlock blur

₹4.2 L/yr - ₹14 L/yr

Senior Analyst
13.8k salaries
unlock blur

₹1 L/yr - ₹8.8 L/yr

Explore more salaries
Compare HCLTech with

TCS

3.7
Compare

Wipro

3.7
Compare

Accenture

3.9
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview