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

Filter interviews by

HCLTech Interview Questions and Answers for Freshers

Updated 1 Jul 2025
Popular Designations

183 Interview questions

A Service Desk Analyst was asked
Q. 1. What is a SMTP and how it's being used 2. What is ITIL and it's version 3. What were the troubleshooting for Internet disconnected? 4.What is BSOD? 5. What is the use of IPconfing command?
Ans. 

Answers to common IT-related questions for Service Desk Analyst position

  • SMTP is a protocol used for sending email messages between servers

  • ITIL is a framework for IT service management, with versions including ITIL v3 and ITIL 4

  • Troubleshooting for Internet disconnected includes checking cables, resetting the router, and checking network settings

  • BSOD stands for Blue Screen of Death, a critical error in Windows opera...

View all Service Desk Analyst interview questions
A Test Engineer was asked
Q. What is X path? What is absolute xpath and relative xpath?
Ans. 

XPath is a language used to navigate through XML documents. Absolute XPath specifies the complete path from the root element, while relative XPath specifies the path from the current element.

  • XPath is used to locate elements in an XML document

  • Absolute XPath starts with a single forward slash and specifies the complete path from the root element

  • Relative XPath starts with a double forward slash and specifies the path...

View all Test Engineer interview questions
A Software Engineer was asked
Q. Different type of testing and testing tools?
Ans. 

Different types of testing include unit, integration, system, acceptance, and regression testing. Testing tools include Selenium, JUnit, and TestNG.

  • Unit testing: testing individual units or components of code

  • Integration testing: testing how different units or components work together

  • System testing: testing the entire system as a whole

  • Acceptance testing: testing to ensure the system meets the requirements of the st...

View all Software Engineer interview questions
A Software Trainee was asked
Q. Tell me about yourself Linked list and Array list
Ans. 

I am a software trainee with knowledge in linked list and array list.

  • I have experience in implementing linked lists and array lists in various programming languages.

  • Linked lists are dynamic data structures while array lists are static data structures.

  • Linked lists are efficient for insertion and deletion operations while array lists are efficient for random access.

  • Examples of programming languages that support link...

View all Software Trainee interview questions
An Associate Software Developer was asked
Q. What is ur project ? and then wts is ur role in this project ? and core java oops concepts ...
Ans. 

I worked on a project that involved developing a web application using Java and Spring framework.

  • Developed RESTful APIs using Spring Boot

  • Implemented user authentication and authorization using Spring Security

  • Used Hibernate for database operations

  • Implemented caching using Redis

  • My role was to develop and maintain the backend of the application

View all Associate Software Developer interview questions
A Software Engineer was asked
Q. 1.Oops concepts 2.what is list and tuples 3.write code to sort the string
Ans. 

Interview questions for Software Engineer on OOPs concepts, list and tuples, and sorting strings.

  • OOPs concepts include inheritance, polymorphism, encapsulation, and abstraction.

  • Lists and tuples are data structures in Python. Lists are mutable while tuples are immutable.

  • To sort a string in Python, use the sorted() function or the sort() method.

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is array and linked list.
Ans. 

Array is a collection of elements of same data type. Linked list is a data structure where each element points to the next one.

  • Arrays have fixed size, linked lists can grow dynamically

  • Arrays have constant time access, linked lists have linear time access

  • Arrays are stored in contiguous memory, linked lists are stored in non-contiguous memory

  • Example of array: int[] arr = {1, 2, 3, 4, 5}

  • Example of linked list: Node h...

View all Software Engineer interview questions
Are these interview questions helpful?
A BODS Developer was asked
Q. What kind of situations have you encountered during bulk load or complex mapping and what did you do to make the job more efficient. How do you enhance your job?
Ans. 

I faced challenges in bulk loading and complex mappings, optimizing processes through automation and best practices.

  • Encountered performance issues during bulk loads; implemented partitioning to improve load times.

  • Faced data type mismatches in complex mappings; created reusable transformation functions to standardize data.

  • Used incremental loading strategies to minimize data transfer and processing time, especially ...

A Software Engineer was asked
Q. Explain the data structures like linked list, dfs and bfs.
Ans. 

Linked list is a linear data structure. DFS and BFS are graph traversal algorithms.

  • Linked list is a collection of nodes where each node points to the next node.

  • DFS (Depth First Search) is a traversal algorithm that explores as far as possible along each branch before backtracking.

  • BFS (Breadth First Search) is a traversal algorithm that explores all the vertices of a graph in breadth-first order.

  • Example of linked l...

View all Software Engineer interview questions
A Technical Architect was asked
Q. Microservice project architecture and flow in current project, Microservice design patterns etc..
Ans. 

Explained microservice project architecture and design patterns.

  • Our microservice project follows a domain-driven design approach.

  • We use API Gateway pattern to handle requests and route them to appropriate microservices.

  • We also use Circuit Breaker pattern to handle failures and prevent cascading failures.

  • Each microservice has its own database and communicates with other microservices through REST APIs.

  • We use contai...

View all Technical Architect interview questions

HCLTech Interview Experiences for Freshers

439 interviews found

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

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

Round 1 - Aptitude Test 

The assessment comprised an aptitude test and a coding test, featuring seventy-five questions with a duration of approximately two hours. The questions ranged in difficulty from easy to moderate and were all in multiple-choice format.

Round 2 - Technical 

(6 Questions)

  • Q1. Questions on HTML tags
  • Q2. Questions on Python exceptional Handling
  • Q3. Questions on SQl
  • Q4. Questions on OOPs
  • Q5. Question on DSA
  • Q6. Questions on ServiceNow as I was applied for a ServiceNow role.

Interview Preparation Tips

Interview preparation tips for other job seekers - This process will be of easy to moderate difficulty, covering all core concepts. Therefore, focus on fundamental topics such as DBMS, OOP, DSA, HTML, and others. All questions will be basic, and this will aid in your preparation.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. 1) OOPS in java, and told to explain abstraction, encapsulation, inheritance with practical code 2) Exception handling(globally), Authentication and authorization 3) SOLID principles and factory design pat...
  • Ans. 

    Interview questions for Software Engineer position covering OOPS concepts, exception handling, SOLID principles, Java 8 features, and Streams.

    • Abstraction in OOPS: Hiding implementation details. Example: Abstract class Shape with method draw().

    • Encapsulation in OOPS: Bundling data and methods that operate on the data. Example: Class Employee with private fields and public getters/setters.

    • Inheritance in OOPS: Reusing code...

  • Answered by AI
  • Q2. 1) Advantage of springboot over spring 2) Tell me all the anotations you know in spring 3) What are CRUD operations, write controller layer and use validating annotations like @NotNull, @valid etc. how to ...
  • Ans. 

    The interview questions cover various topics related to Spring framework, REST vs SOAP, JPA repository, Feign client, circuit breaker, and Spring Security.

    • Spring Boot provides a simpler and faster way to set up and run Spring applications compared to traditional Spring.

    • Common annotations in Spring include @Controller, @Service, @Repository, @Autowired, @Component, @RequestMapping, @GetMapping, @PostMapping, @PutMapping...

  • Answered by AI
  • Q3. 1) ACID properties 2) DBMS commands 3) inner queries 4) Joins 5) S3 bucket congif and how to handle file and upload and retrieve in s3 6) Ci/Cd basic flow and docker explaination

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare resume well and keep applying to jobs

Skills evaluated in this interview

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

I appeared for an interview in Feb 2025.

Round 1 - Aptitude Test 

Multiple sections, which includes quants, verbal, reasoning, pseudo codes.

Round 2 - Group Discussion 

Virtual GD round , gives two min to talk

Round 3 - Technical 

(1 Question)

  • Q1. Basics of coding , puzzles, oops concept.
Round 4 - HR 

(1 Question)

  • Q1. Formal HR Questions
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Technical questions
  • Q2. Tell me about yourself
  • Ans. 

    I am a Senior Data Engineer with 8 years of experience in designing and implementing data pipelines for large-scale projects.

    • Experienced in building and optimizing ETL processes

    • Proficient in programming languages such as Python, SQL, and Java

    • Skilled in working with big data technologies like Hadoop, Spark, and Kafka

    • Strong background in data modeling and database design

    • Familiar with cloud platforms like AWS and Azure

  • Answered by AI
  • Q3. Questions on SQL queries
  • Q4. Python questions
  • Q5. DBT/snowflake questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Despite completing all three rounds and the verbal offer , they have not issued the offer letter, citing project constraints.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Most asked from resume how to do outlook configuration?
  • Ans. 

    Outlook configuration involves setting up email accounts, preferences, and connectivity for effective email management.

    • Open Outlook and go to 'File' > 'Account Settings' > 'Account Settings'.

    • Click 'New' to add a new email account and select 'Email Account'.

    • Enter your name, email address, and password, then click 'Next'.

    • Outlook will attempt to configure your account automatically; if it fails, select 'Manual setup...

  • Answered by AI
  • Q2. What are the works and tools which you use in your organisation?
  • Ans. 

    We use a variety of tools such as ticketing systems, remote desktop software, knowledge bases, and monitoring tools.

    • Ticketing systems (e.g. ServiceNow, Jira)

    • Remote desktop software (e.g. TeamViewer, Remote Desktop Connection)

    • Knowledge bases (e.g. Confluence, SharePoint)

    • Monitoring tools (e.g. SolarWinds, Nagios)

  • Answered by AI
Round 2 - English test versant 

(1 Question)

  • Q1. Basic English listening and speaking skills checks should be carefully listen and speak it's easy but be careful
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation

SAP Abap Consultant Interview Questions & Answers

user image kalyan krishna

posted on 26 Aug 2024

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(11 Questions)

  • Q1. Self introduction
  • Q2. Projects done in training
  • Ans. 

    I have completed multiple projects during my training in SAP ABAP.

    • Developed a custom report to track sales data for a retail client

    • Enhanced existing programs to improve performance and functionality

    • Worked on a team project to integrate SAP modules for a manufacturing company

  • Answered by AI
  • Q3. Bdc concepts call transaction and session method
  • Ans. 

    BDC in SAP ABAP allows data transfer using Call Transaction and Session methods for batch processing.

    • BDC (Batch Data Communication) is used for data transfer in SAP.

    • Call Transaction method processes data in real-time, suitable for immediate updates.

    • Session method processes data in the background, allowing for error handling and logging.

    • Example of Call Transaction: Updating a customer record immediately after data entry...

  • Answered by AI
  • Q4. Asked Select query
  • Q5. Asked about Itab and how to declare it
  • Q6. Asked about smart forms and it's stpes
  • Q7. Asked about Domain and Data element
  • Q8. Asked about Bapi
  • Ans. 

    BAPIs are standardized programming interfaces in SAP for accessing business processes and data.

    • BAPIs are part of the Business Object Repository (BOR).

    • They allow external applications to interact with SAP systems.

    • Example: BAPI_SALESORDER_CREATEFROMDAT2 for creating sales orders.

    • BAPIs ensure data consistency and integrity during transactions.

    • They can be called from various environments, including Java and .NET.

  • Answered by AI
  • Q9. Asked about Idoc
  • Q10. Material creation and types of bapi
  • Ans. 

    Material creation in SAP involves using BAPIs for different types of materials.

    • BAPI_MATERIAL_SAVEDATA can be used for creating materials in SAP

    • Different types of materials include raw materials, semi-finished goods, finished goods, etc.

    • BAPI_MATERIAL_GET_ALL can be used to retrieve information about all materials in SAP

  • Answered by AI
  • Q11. About my previous profession
Round 2 - One-on-one 

(10 Questions)

  • Q1. Self introduction
  • Q2. Technical settings
  • Q3. Asked about data class
  • Q4. Module pool programming steps
  • Ans. 

    Module pool programming is a technique in SAP ABAP for creating interactive user interfaces.

    • Define screen elements using Screen Painter

    • Write ABAP code for screen logic and flow control

    • Handle user input and trigger actions based on user interactions

    • Use function modules for backend processing

    • Implement navigation between screens

  • Answered by AI
  • Q5. Asked about IDOC
  • Q6. Asked about Enhancements
  • Q7. What is function module and where we use it?
  • Ans. 

    Function module is a reusable subroutine in SAP ABAP used for specific functionality.

    • Function modules are standalone functions that can be called from any ABAP program.

    • They are used to encapsulate specific business logic or calculations.

    • Function modules can be called remotely from other systems using Remote Function Call (RFC).

    • Examples include function modules for currency conversion, date calculations, or data validat...

  • Answered by AI
  • Q8. How to change input parameters in reports
  • Ans. 

    Input parameters in reports can be changed by modifying the selection screen fields in the ABAP program.

    • Modify the selection screen fields in the ABAP program to change input parameters

    • Use PARAMETERS or SELECT-OPTIONS statements to define input fields

    • Update the logic in the report program to process the new input parameters

  • Answered by AI
  • Q9. Smart forms vs sap scripts
  • Ans. 

    Smart forms are newer and more advanced than SAP scripts.

    • Smart forms are newer technology compared to SAP scripts.

    • Smart forms offer more features and flexibility in designing forms.

    • Smart forms are easier to maintain and modify compared to SAP scripts.

    • Smart forms support interactive forms and digital signatures.

    • SAP scripts are older technology and are being phased out in favor of smart forms.

  • Answered by AI
  • Q10. Search help types

Interview Preparation Tips

Interview preparation tips for other job seekers - Study well

Skills evaluated in this interview

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
  • 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
  • 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
  • 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

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.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. What is AAA in Cyber security? Difference between Authentication vs Authorization
  • Ans. 

    AAA in cybersecurity stands for Authentication, Authorization, and Accounting, crucial for securing systems.

    • Authentication verifies user identity (e.g., passwords, biometrics).

    • Authorization determines user permissions (e.g., access to files).

    • Accounting tracks user activities (e.g., logging access times).

    • Example: A user logs in (Authentication), accesses a file (Authorization), and their actions are logged (Accounting).

  • Answered by AI
  • Q2. IDS vs IPS
  • Ans. 

    IDS detects intrusions, while IPS actively prevents them, enhancing network security.

    • IDS (Intrusion Detection System) monitors network traffic for suspicious activity.

    • IPS (Intrusion Prevention System) not only detects but also blocks potential threats.

    • Example of IDS: Snort, which analyzes traffic and alerts administrators.

    • Example of IPS: Cisco Firepower, which can block malicious traffic in real-time.

    • IDS is typically p...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Tell me about your hobbies
  • Ans. 

    I enjoy hiking, reading, and photography, which help me relax and explore my creativity.

    • Hiking: I love exploring nature trails and discovering new landscapes, often going on weekend hikes with friends.

    • Reading: I read a variety of genres, from fiction to non-fiction, and recently finished a book on cybersecurity.

    • Photography: I enjoy capturing moments during my hikes, focusing on landscapes and wildlife, and I often shar...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

It consists of numerous types of reasoning and quants questions. They are basic level.

Round 2 - Technical 

(2 Questions)

  • Q1. About your project.
  • Q2. About basics of algorithm.
Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. About your past interview experiences.
Round 4 - One-on-one 

(2 Questions)

  • Q1. Introduce and showcase your result.
  • Ans. 

    I successfully designed and implemented a new software system for optimizing energy consumption in buildings.

    • Researched current energy consumption trends in buildings

    • Developed algorithms to analyze and optimize energy usage

    • Implemented software system using Python and SQL

    • Conducted testing and validation to ensure accuracy

    • Resulted in 20% reduction in energy consumption in test buildings

  • Answered by AI
  • Q2. Libraries of python and how to add python with database.
  • Ans. 

    Python has libraries like SQLAlchemy, psycopg2 for database connectivity. Use these libraries to connect Python with databases.

    • Use SQLAlchemy library for ORM (Object Relational Mapping) to interact with databases.

    • Use psycopg2 library for direct interaction with PostgreSQL database.

    • Install the required libraries using pip install .

    • Establish connection to the database using appropriate credentials.

    • Execute SQL queries usi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself. Be clear and confident.

Skills evaluated in this interview

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

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

  • Q1. Tell me something about yourself
  • Q2. Tell me something about your hobbies
  • Ans. 

    I enjoy painting, hiking, and reading, which help me relax and express my creativity while staying active and informed.

    • Painting: I love experimenting with watercolors and acrylics, often painting landscapes and abstract art.

    • Hiking: I frequently explore local trails, enjoying nature and the physical challenge it provides.

    • Reading: I read a variety of genres, from fiction to self-help, which broadens my perspective and en...

  • Answered by AI

What people are saying about HCLTech

View All
appreciativesonic
Verified Icon
5d
works at
HCLTech
6 YOE Sales Pro Stuck in Chaos—Time to Jump Ship?
I've got 6 years in sales across 3 companies, but my average stint is only 1.5 years. Plus, I'm underpaid. At my current job, my domain's been switched 5 times in just 1.4 years, and teams change without warning. What should I do? The politics are insane, there's zero work culture, and no processes. It's too much!
Got a question about HCLTech?
Ask anonymously on communities.

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, International Voice Process, customer support and bpo.
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. How is Azure, AWS, GCP different from each other and what are the similariti...read more
What are the most common questions asked in HCLTech HR round for freshers?

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

  1. What are your strengths and weakness...read more
  2. Tell me about yourse...read more
  3. What are your salary expectatio...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.

Overall Interview Experience Rating

3.9/5

based on 238 interview experiences

Difficulty level

Easy 26%
Moderate 69%
Hard 6%

Duration

Less than 2 weeks 65%
2-4 weeks 22%
4-6 weeks 3%
6-8 weeks 4%
More than 8 weeks 6%
View more
Join HCLTech Find your spark and discover what drives you forward

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
LTIMindtree Interview Questions
3.7
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

HCLTech Reviews and Ratings

based on 39.7k reviews

3.5/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

2.8

Salary

3.8

Job security

3.3

Company culture

2.6

Promotions

3.2

Work satisfaction

Explore 39.7k Reviews and Ratings
Python Backend Developer

Hyderabad / Secunderabad,

Chennai

+1

3-6 Yrs

₹ 5-15 LPA

Looking For Golang Developer @ PAN India

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Software Developer

Noida,

Chennai

3-7 Yrs

₹ 3-12 LPA

Explore more jobs
Software Engineer
24.8k salaries
unlock blur

₹1.9 L/yr - ₹8 L/yr

Technical Lead
22.8k salaries
unlock blur

₹7 L/yr - ₹29 L/yr

Senior Software Engineer
16.8k salaries
unlock blur

₹4.5 L/yr - ₹17.5 L/yr

Lead Engineer
16.4k salaries
unlock blur

₹4.1 L/yr - ₹14 L/yr

Analyst
15.7k salaries
unlock blur

₹0.8 L/yr - ₹6.5 L/yr

Explore more salaries
Compare HCLTech with

TCS

3.6
Compare

Wipro

3.7
Compare

Accenture

3.8
Compare

Cognizant

3.7
Compare
write
Share an Interview