Upload Button Icon Add office photos
Engaged 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

Filter interviews by

HCLTech Associate Software Engineer Interview Questions and Answers for Freshers

Updated 2 Apr 2025

HCLTech Associate Software Engineer Interview Experiences for Freshers

3 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is const pointer
  • Ans. 

    A const pointer is a pointer that points to a constant value and cannot be used to modify the value it points to.

    • A const pointer is declared using the 'const' keyword before the pointer type.

    • Example: const int *ptr; // pointer to a constant integer value

    • The value pointed to by a const pointer cannot be modified.

    • Example: *ptr = 10; // This will result in a compilation error

  • Answered by AI
  • Q2. What is pointer to constant
  • Ans. 

    Pointer to constant is a pointer that points to a constant value, meaning the value cannot be changed through the pointer.

    • Pointer to constant is declared using 'const' keyword before the data type.

    • The value pointed to by a pointer to constant cannot be modified.

    • Example: const int *ptr; // Pointer to constant integer

  • Answered by AI
Round 2 - Coding Test 

Pointers full depth question and programs

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

Question based on logical reasoning problem solving coding decoding and other

Associate Software Engineer Interview Questions Asked at Other Companies for Fresher

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Accenture
Q3. Write a function to determine if a given string is a valid passwo ... read more
asked in Gainsight
Q4. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q5. Add K Nodes Problem Statement You are given a singly linked list ... read more
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 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 

Similar to all company exams have aptitude and some coding questions

Round 3 - Technical 

(1 Question)

  • Q1. Things that were in your resume were asked.. Easy to medium
  • Ans. 

    Discussed projects and skills listed on my resume, showcasing my technical abilities and problem-solving experience.

    • Developed a web application using React and Node.js, improving user engagement by 30%.

    • Implemented RESTful APIs for data retrieval, enhancing application performance.

    • Collaborated in a team project using Agile methodologies, leading to timely delivery of features.

    • Contributed to open-source projects, gaining...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Personality questions were asked that's it

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Good at problem solving
Fluent in English

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why are you looking for the job change?
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I'm looking to expand my skill set and take on more leadership responsibilities.

    • Seeking a better cultural fit: My current company has a different work culture than what I thrive in; I value collaboration and innovation.

    • Interest in new technologies: I'm excited about working with cuttin...

  • Answered by AI
  • Q2. Relevant technical questions, as per my current technology

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and be yourself. That's what the interviewers looked into. Also a thorough understanding of the technology is a must and that is what will help you in cracking the interview. You don't have to go in-depth, just the overview and what happens when is what they look for. Good communication skills is also an added incentive, something I always try to work on. All the best

What people are saying about HCLTech

View All
carefulmatcha
Verified Icon
2w
works at
Cognizant
DXC or HCL for Mainframe Dev? Help me decide!
Hey everyone 👋 I’m at a crossroads with offers from HCLTech and DXC for a Mainframe Developer role. I’ve got 3.7 years in COBOL, DB2, JCL, VSAM, and IMS, and I’m aiming for technical growth, solid projects, and leadership potential. 👉 I want to sharpen my IMS and VSAM skills, build a strong career, and move into tech leadership. If you’re at either company (especially in mainframe), your insights would be awesome! Which place is best for learning, recognition, and long-term stability? Thanks a bunch! 🙏
Got a question about HCLTech?
Ask anonymously on communities.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via LinkedIn and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy logical questions
basic quant

Round 2 - Coding Test 

Easy level coding questions
Counting frequency of alphabets

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through the basics of javascript
Hoisting

Interview Questionnaire 

5 Questions

  • Q1. Basic telephone round probably around 3 times
  • Q2. About ourself and past experience
  • Q3. And they really see if we are interested or not, nothing technical
  • Q4. Telephone technical interview
  • Q5. My role is pega developer so questions are on pega

Interview Preparation Tips

Round: Face to face technical
Experience: Asked each and every aspect in pega

Are these interview questions helpful?

I applied via Walk-in and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is C++
  • Ans. 

    C++ is a high-level programming language used for developing system software, application software, device drivers, and video games.

    • C++ is an extension of the C programming language.

    • It supports object-oriented programming concepts like classes, inheritance, polymorphism, and encapsulation.

    • C++ is used in developing operating systems, browsers, databases, and other software applications.

    • It is known for its performance an...

  • Answered by AI
  • Q2. What is Link List
  • Ans. 

    A data structure that stores a sequence of elements in a linear order.

    • Consists of nodes that contain data and a pointer to the next node.

    • Can be singly linked or doubly linked.

    • Used for implementing stacks, queues, and hash tables.

    • Example: Singly linked list - 1 -> 2 -> 3 -> null

    • Example: Doubly linked list - null <- 1 <-> 2 <-> 3 -> null

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

I applied via Job Portal and was interviewed before Dec 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. First they ask basic questions like HTML SQL Java.

Interview Preparation Tips

Interview preparation tips for other job seekers - First we learn basics programming knowledge and we confident to attend interview and speak bold.

HCLTech Interview FAQs

How many rounds are there in HCLTech Associate Software Engineer 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 Aptitude Test, Technical and Resume Shortlist.
What are the top questions asked in HCLTech Associate Software Engineer interview for freshers?

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

  1. Things that were in your resume were asked.. Easy to med...read more
  2. What is pointer to const...read more
  3. What is const poin...read more
What are the most common questions asked in HCLTech Associate Software Engineer HR round for freshers?

The most common HR questions asked in HCLTech Associate Software Engineer interview are for freshers -

  1. Why are you looking for a chan...read more
  2. What are your salary expectatio...read more
  3. Share details of your previous j...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.3/5

based on 3 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more
HCLTech Associate Software Engineer Salary
based on 293 salaries
₹2.5 L/yr - ₹7.1 L/yr
24% less than the average Associate Software Engineer Salary in India
View more details

HCLTech Associate Software Engineer Reviews and Ratings

based on 34 reviews

3.7/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

3.3

Salary

3.7

Job security

3.4

Company culture

2.9

Promotions

3.6

Work satisfaction

Explore 34 Reviews and Ratings
Software Engineer
24.9k salaries
unlock blur

₹2.7 L/yr - ₹8.1 L/yr

Technical Lead
22.9k salaries
unlock blur

₹10.9 L/yr - ₹21 L/yr

Senior Software Engineer
16.8k salaries
unlock blur

₹5.4 L/yr - ₹15.8 L/yr

Lead Engineer
16.4k salaries
unlock blur

₹5.3 L/yr - ₹12.4 L/yr

Analyst
15.9k salaries
unlock blur

₹2.3 L/yr - ₹6.5 L/yr

Explore more salaries
Compare HCLTech with

TCS

3.6
Compare

Wipro

3.7
Compare

Accenture

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview