Upload Button Icon Add office photos

Filter interviews by

HCL Group Interview Questions, Process, and Tips

Updated 4 Mar 2025

Top HCL Group Interview Questions and Answers

View all 260 questions

HCL Group Interview Experiences

Popular Designations

453 interviews found

Consultant Interview Questions & Answers

user image Anonymous

posted on 4 Jun 2024

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Do you know about conjur, CCP, ASAP, CP implementaiton?
  • Ans. 

    Yes, I am familiar with conjur, CCP, ASAP, and CP implementation in the context of consulting.

    • Conjur is a security service that provides centralized authentication and authorization for applications and services.

    • CCP stands for Cloud Control Plane, which is a centralized platform for managing cloud resources.

    • ASAP refers to As Soon As Possible, which may indicate a sense of urgency in project implementation.

    • CP implementa...

  • Answered by AI
  • Q2. How the replication done in DR?
  • Ans. 

    Replication in DR involves copying data from primary site to secondary site for disaster recovery purposes.

    • Replication can be synchronous or asynchronous

    • Data is typically replicated using technologies like storage replication, database replication, or log shipping

    • Replication ensures data consistency and availability in case of a disaster

    • Examples include using tools like Veeam, Zerto, or native database replication feat

  • Answered by AI
  • Q3. How the oracle type accounts can be configured in CPM?
  • Ans. 

    Oracle type accounts can be configured in CPM by setting up the necessary permissions and access controls.

    • Create a new user account in Oracle with the appropriate permissions for CPM access

    • Assign the user account to the CPM application role

    • Configure the user account settings in CPM to define access levels and restrictions

  • Answered by AI

Interview Preparation Tips

Topics to prepare for HCL Group Consultant interview:
  • Conjur
  • Asap
  • CP
  • CCP
  • AIM
  • Knowledge on API tools
Interview preparation tips for other job seekers - Keep yourself updated on On-permises

Skills evaluated in this interview

Top HCL Group Consultant Interview Questions and Answers

Q1. Do you know about conjur, CCP, ASAP, CP implementaiton?
View answer (1)

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

In aptitude que and if it's clear so 2 coding que

Round 2 - Technical 

(2 Questions)

  • Q1. Difference between linklist and arraylist
  • Ans. 

    LinkedList is a data structure where elements are linked using pointers, while ArrayList is a resizable array implementation.

    • LinkedList uses nodes with pointers to the next element, allowing for efficient insertions and deletions.

    • ArrayList uses a dynamic array to store elements, providing fast random access but slower insertions and deletions.

    • LinkedList is better for frequent insertions and deletions, while ArrayList i...

  • Answered by AI
  • Q2. Reverse string program of java
  • Ans. 

    Java program to reverse a string

    • Use StringBuilder class to reverse the string

    • Convert the string to a StringBuilder object, call reverse() method, then convert back to string

    • Alternatively, use a loop to iterate through the characters of the string in reverse order

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)
HCL Group Interview Questions and Answers for Freshers
illustration image

Data Engineer Interview Questions & Answers

user image vaishnavi kale

posted on 24 Aug 2024

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

(2 Questions)

  • Q1. Explain your project structure ?
  • Ans. 

    My project structure follows a modular approach with separate folders for data ingestion, processing, and storage.

    • Separate folders for data ingestion, processing, and storage

    • Use of version control for tracking changes

    • Documentation for each module and process

    • Unit tests for data pipelines

    • Logging and monitoring for tracking data flow

  • Answered by AI
  • Q2. What is mean by dag ?
  • Ans. 

    DAG stands for Directed Acyclic Graph, a data structure used to represent dependencies between tasks in a workflow.

    • DAG is a collection of nodes connected by directed edges, where each edge represents a dependency between tasks.

    • It is acyclic, meaning there are no cycles or loops in the graph.

    • DAGs are commonly used in data processing pipelines to ensure tasks are executed in the correct order.

    • Example: In a DAG representi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No Result

Skills evaluated in this interview

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(9 Questions)

  • Q1. About clinical trials and its phases
  • Q2. What are the supervisory functions why would we call them as supervisory function
  • Q3. From a sentence how to pick a word for example from this sentence: this is a sas class have to pic "sas" word how we have to write a code to that
  • Q4. In SQL how to we create multiple macros In SQL difference between where clause and having clause
  • Q5. In DM what kind of information will stored and what are the variables we have in DM
  • Q6. Data demo; set demo1; where age<14; where weight>80; run: what is the mistake in this code? kind of this question not the same one
  • Ans. 

    The code has two 'where' statements which is not allowed in SAS.

    • Remove one of the 'where' statements to correct the code.

    • Combine the conditions using 'and' or 'or' operators if both conditions need to be applied.

  • Answered by AI
  • Q7. X=1+.+2+7 y=sum(1,.,2,7) have to explain what the difference is above two codes working
  • Ans. 

    The first code calculates the sum of 1, 2, and 7 separately, while the second code calculates the sum of 1, 2, and 7 as a whole.

    • Code x=1+.+2+7 calculates the sum of individual numbers (1, 2, 7) separately.

    • Code y=sum(1,.,2,7) calculates the sum of all numbers (1, 2, 7) together.

    • The first code will result in x=1+2+7=10, while the second code will result in y=1+2+7=10.

  • Answered by AI
  • Q8. Tell me about yourself
  • Q9. Show me your ID like Aadhar card/PAN card/Voter ID
Round 2 - HR 

(4 Questions)

  • Q1. Tell me about yourself
  • Q2. Show me your certificates one by one and along with ID proof
  • Q3. Rate yourself in English communication
  • Ans. 

    I rate myself as proficient in English communication

    • I have strong verbal and written communication skills

    • I am able to effectively convey complex information in a clear and concise manner

    • I am comfortable communicating with colleagues, clients, and stakeholders

    • I have experience presenting findings and reports in English

  • Answered by AI
  • Q4. Madhuria location is ok for you

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well you'll definitely crack interview

Skills evaluated in this interview

Clinical SAS Programmer Interview Questions asked at other Companies

Q1. data demo; set demo1; where age&lt;14; where weight&gt;80; run: what is the mistake in this code? kind of this question not the same one
View answer (1)

HCL Group interview questions for popular designations

 Software Engineer

 (30)

 Analyst

 (19)

 Senior Software Engineer

 (14)

 Technical Lead

 (10)

 Lead Engineer

 (8)

 Softwaretest Engineer

 (7)

 Software Developer

 (7)

 Senior Technical Lead

 (6)

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

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Expalin about Dependency Injection Princple
  • Ans. 

    Dependency Injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Allows for easier testing by mocking dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Example: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q2. Types of LifeTime Scopes of Depedendy Injection Principle and UseCases
  • Ans. 

    There are three types of LifeTime Scopes in Dependency Injection: Transient, Scoped, and Singleton.

    • Transient: Objects are created each time they are requested.

    • Scoped: Objects are created once per request.

    • Singleton: Objects are created only once and shared across the application.

  • Answered by AI
  • Q3. If you have a complex Stored Procedures which are required to be called for certain Validation Which one you chose, ADo.net or Entity Framework Core
  • Q4. Share the screen and show how to implement DIP in .net core
  • Ans. 

    Implementing DIP in .NET Core

    • Create an interface for the dependency

    • Implement the interface in a separate class

    • Inject the dependency into the consuming class

    • Use dependency injection container to resolve dependencies

  • Answered by AI
  • Q5. Explain about CTE
  • Ans. 

    CTE stands for Common Table Expressions, a temporary result set that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • CTEs are defined using the WITH keyword in SQL.

    • They can improve readability and maintainability of complex queries.

    • CTEs can be recursive, allowing for hierarchical data querying.

    • Example: WITH cte AS (SELECT * FROM table_name) SELECT * FROM cte;

    • Example: WITH RECURSIVE cte AS (SELECT...

  • Answered by AI
  • Q6. Difference between ABstact Classes and Interface
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, fields, and methods, while interfaces cannot.

    • A class can only extend one abstract class, but it can implement multiple interfaces.

    • Abstract classes are used to define a common behavior for subclasses, while interfaces are used to define a contract for classes to implem...

  • Answered by AI

Skills evaluated in this interview

Top HCL Group Technical Lead Interview Questions and Answers

Q1. Share the screen and show how to implement DIP in .net core
View answer (1)

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

Get interview-ready with Top HCL Group Interview Questions

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

(2 Questions)

  • Q1. How ls command works?
  • Ans. 

    ls command is used to list files and directories in a directory.

    • ls command stands for 'list'.

    • It displays the names of files and directories in the current directory by default.

    • Options can be used with ls command to customize the output, such as -l for long listing format or -a to show hidden files.

    • Example: 'ls -l' will display files and directories in long listing format.

  • Answered by AI
  • Q2. How DNS works ?
  • Ans. 

    DNS translates domain names to IP addresses to locate resources on the internet.

    • DNS servers store records mapping domain names to IP addresses

    • When a user enters a domain name, their device queries a DNS server to resolve it

    • DNS uses a hierarchical system with top-level domains like .com or .org

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Unix system

Skills evaluated in this interview

System Engineer Interview Questions asked at other Companies

Q1. Election Winner Determination In an ongoing election between two candidates A and B, there is a queue of voters that includes supporters of A, supporters of B, and neutral voters. Neutral voters have the power to swing the election results ... read more
View answer (9)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Dec 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Can we use commit in user exit
  • Ans. 

    Yes, we can use commit in user exit to save data changes to the database.

    • Commit can be used in user exits to save changes made to the database within the exit.

    • It is important to use commit carefully in user exits to avoid data inconsistencies.

    • Example: Using commit in a user exit after updating a table to ensure the changes are saved.

  • Answered by AI

SAP Abap Consultant Interview Questions asked at other Companies

Q1. 1.what is ddic T-code 2. what is package 3.what are objects in se11 3.what is domain and data element 4.steps to create table 5.what are different types of views 5.what is lock objects 6.what is TMG and events in TMG 7.what is autorization ... read more
View answer (2)

Accountant Interview Questions & Answers

user image Anonymous

posted on 18 Jan 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Nil 

(2 Questions)

  • Q1. Why do you want to leave the previous job
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for career advancement

    • Looking for new challenges

    • Seeking better work-life balance

    • Company restructuring or downsizing

    • Relocation to a new area

  • Answered by AI
  • Q2. What was the salary you were paid
  • Ans. 

    I was paid a competitive salary based on my experience and qualifications.

    • My salary was based on my level of experience and qualifications

    • I received a competitive salary compared to industry standards

    • I was satisfied with my salary package

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Negotiation of salary, timeing, working and most importantly stability of job

Accountant Interview Questions asked at other Companies

Q1. What journal is made when purchase requisition is created
View answer (25)
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Why should I remove
  • Ans. 

    Removing unnecessary code improves code readability, maintainability, and performance.

    • Removing unused variables, functions, or comments can make the code easier to understand for other developers.

    • Eliminating duplicate code reduces the risk of errors and makes the codebase more efficient.

    • Removing deprecated or obsolete features can improve the overall performance of the software.

    • Regularly cleaning up code can prevent te

  • Answered by AI
  • Q2. What is your strength and weakness
  • Ans. 

    Strength: Problem-solving skills. Weakness: Public speaking.

    • Strength: Ability to analyze complex problems and find effective solutions

    • Weakness: Nervousness when speaking in front of large groups

    • Strength: Experience in coding challenges and hackathons

    • Weakness: Lack of experience in presenting technical concepts to non-technical audiences

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I possess leadership qualities, good behavior, and technical skills.

Software Developer 1 Interview Questions asked at other Companies

Q1. Do you have prior experience in Java and Spring Boot?
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via LinkedIn

Round 1 - Coding Test 

1st round technical qn
2nd round sql and database, project
3rd HR round

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Contribute & help others!
anonymous
You can choose to be anonymous

HCL Group Interview FAQs

How many rounds are there in HCL Group interview?
HCL Group interview process usually has 2-3 rounds. The most common rounds in the HCL Group interview process are Technical, Resume Shortlist and HR.
How to prepare for HCL Group 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 HCL Group. The most common topics and skills that interviewers at HCL Group expect are CSR, Fund Raising, Salesforce, Algorithms and Contract Management.
What are the top questions asked in HCL Group interview?

Some of the top questions asked at the HCL Group interview -

  1. Monitoring tools and what metrics we capture during or after test...read more
  2. As Tomcat is the default server in Spring Boot, how would you add a new serv...read more
  3. Convert following for loop into while loop for (i=0; i>n; i++) { …. ….. ...read more
How long is the HCL Group interview process?

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

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Furlenco

No Interviews

JOBS

Browse jobs

Discover jobs you love

SALARIES

NexGen Technologies

No Salaries

COMPANY BENEFITS

NexGen Technologies

No Benefits

COMPANY BENEFITS

KOHINOOR TELEVIDEO

No Benefits

SALARIES

KOHINOOR TELEVIDEO

No Salaries

SALARIES

EaseMyTrip.com

No Salaries

Tell us how to improve this page.

HCL Group Interview Process

based on 403 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
View all

HCL Group Reviews and Ratings

based on 5.5k reviews

3.6/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

3.0

Salary

3.9

Job security

3.5

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 5.5k Reviews and Ratings
Technical Lead
3.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
3.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
2.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Engineer
2.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Analyst
2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare HCL Group with

HCLTech

3.5
Compare

TCS

3.7
Compare

Tata Group

4.2
Compare

Wipro

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