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

Filter interviews by

HCLTech Assistant General Manager Technology Interview Questions and Answers

Updated 23 Jul 2024

HCLTech Assistant General Manager Technology Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Project expertise and implementation
  • Q2. Cybersecurity latest trend
  • Ans. 

    Zero trust security model is the latest trend in cybersecurity.

    • Zero trust security model focuses on verifying identity and device security before granting access.

    • AI and machine learning are being used to enhance cybersecurity defenses.

    • Cloud security and data protection are top priorities for organizations.

    • Ransomware attacks are on the rise, prompting increased focus on incident response and recovery.

    • Endpoint security s...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Complete tech process
  • Ans. 

    The tech process involves planning, designing, developing, testing, and implementing technology solutions.

    • Planning: Define project scope, goals, and requirements.

    • Designing: Create technical architecture and user interface.

    • Developing: Write code and build the technology solution.

    • Testing: Conduct quality assurance and user acceptance testing.

    • Implementing: Deploy the technology solution and provide support.

    • Examples: Using...

  • Answered by AI
  • Q2. Project & team handling

Interview Preparation Tips

Interview preparation tips for other job seekers - HCL had confirmed that i have cleared all my rounds through an welcome email. Got a call from HR - Aakash reg the salary expectation and post that there was no update nor answered my call. I received the BGV email to upload the doc. A pathetic process and HR's were very rude and they never respond. Its been 3 weeks and haven't got any update.

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is rdbms in sql
  • Ans. 

    RDBMS stands for Relational Database Management System in SQL.

    • RDBMS is a type of database management system that stores data in a structured format using rows and columns.

    • It allows users to establish relationships between different data sets.

    • SQL (Structured Query Language) is commonly used to interact with RDBMS.

    • Examples of RDBMS in SQL include MySQL, Oracle, and SQL Server.

  • Answered by AI
  • Q2. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to represent multiple data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

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

(1 Question)

  • Q1. Explain about azure functions
  • Ans. 

    Azure Functions is a serverless compute service that lets you run event-triggered code without having to explicitly provision or manage infrastructure.

    • Azure Functions allows you to write small pieces of code that run in response to events.

    • It supports multiple programming languages like C#, JavaScript, Python, etc.

    • You can easily integrate Azure Functions with other Azure services like Azure Storage, Azure Cosmos DB, etc...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about a time a project was not successful & how you worked through it
  • Q2. What does success look like to you
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Aug 2023. There were 3 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 - Assignment 

It was a multiple questions test, 90 minutes test 43 questions technical question based on the position i have applied. It is intermediate level of test. I have cleared the test.

Round 3 - Technical 

(5 Questions)

  • Q1. After completed my Assessment test , I got a call from HR for technical round through WebEx. Yesterday interview done in that call panel asked about my role of my current company and asked about my project...
  • Q2. Put vs patch in restful
  • Ans. 

    In RESTful APIs, 'put' is used to update an entire resource, while 'patch' is used to update only specific fields of a resource.

    • PUT is used to update the entire resource, while PATCH is used to update specific fields

    • PUT requires the client to send the entire updated resource, while PATCH only requires the client to send the specific fields to be updated

    • PUT is idempotent, meaning multiple identical requests will have th...

  • Answered by AI
  • Q3. Different between restful and webclient
  • Ans. 

    Restful is an architectural style for designing networked applications, while WebClient is a class in Java used for making HTTP requests.

    • RESTful is an architectural style that uses HTTP methods like GET, POST, PUT, DELETE to perform operations on resources.

    • WebClient is a class in Java that provides a higher-level API for making HTTP requests and handling responses.

    • RESTful APIs are stateless and use standard HTTP status...

  • Answered by AI
  • Q4. Serialization and deserialization in java
  • Ans. 

    Serialization is the process of converting an object into a byte stream, while deserialization is the process of converting a byte stream back into an object in Java.

    • Serialization is achieved by implementing the Serializable interface in Java.

    • Deserialization is done by reading the byte stream and reconstructing the object using the readObject() method.

    • Example: ObjectOutputStream for serialization and ObjectInputStream

  • Answered by AI
  • Q5. What are functional interface in java8
  • Ans. 

    Functional interfaces in Java 8 are interfaces with a single abstract method, used for lambda expressions and method references.

    • Functional interfaces have only one abstract method, but can have multiple default or static methods.

    • They can be used with lambda expressions and method references.

    • Examples include java.lang.Runnable, java.util.Comparator, and java.util.function.Predicate.

  • Answered by AI

Skills evaluated in this interview

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 Mar 2023. There were 3 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 - Coding Test 

The experience for writing code

Round 3 - Technical 

(5 Questions)

  • Q1. How a reverse string in java
  • Ans. 

    Reverse a string in Java

    • Convert the string to a character array

    • Use two pointers, one at the start and one at the end of the array

    • Swap the characters at the two pointers and move the pointers towards each other

    • Repeat until the pointers meet in the middle

  • Answered by AI
  • Q2. How do you calculate the number of vowels and constant in string
  • Ans. 

    This question is about calculating the number of vowels and consonants in a string.

    • Iterate through each character in the string

    • Check if the character is a vowel or a consonant

    • Increment the respective count variable

    • Return the counts of vowels and consonants

  • Answered by AI
  • Q3. How to find out if the goven two string are anagram or not
  • Ans. 

    Anagrams can be found by sorting both strings and comparing them.

    • Sort both strings alphabetically

    • Compare the sorted strings

    • If they are the same, the strings are anagrams

    • Example: 'listen' and 'silent' are anagrams

  • Answered by AI
  • Q4. An anagram of string is another string contains the same character only the order of character can be different
  • Ans. 

    An anagram of a string is a rearrangement of its characters to form a new string with the same set of characters.

    • Anagrams can be formed by rearranging the letters of a word or phrase.

    • Anagrams can be used in cryptography and word games.

    • Examples of anagrams include 'listen' and 'silent', 'debit card' and 'bad credit'.

  • Answered by AI
  • Q5. How do you determine if a string is a palidrome
  • Ans. 

    A palindrome is a string that reads the same forwards and backwards.

    • Compare the first character with the last character, the second character with the second-to-last character, and so on.

    • If any pair of characters doesn't match, the string is not a palindrome.

    • Ignore spaces and punctuation marks when comparing characters.

    • Convert the string to lowercase or uppercase to make the comparison case-insensitive.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It is good

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jul 2023. There were 4 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 - Aptitude Test 

All aptitude related questions they asked like quantity aptitude reasoning English

Round 3 - Coding Test 

All coding related questions from C and java language

Round 4 - HR 

(4 Questions)

  • Q1. HR normal level questions about your self and your past experience about your family
  • Q2. About your self About your family Your past experience Why you choose hcl
  • Q3. Where you learn all these skills
  • Q4. About there traning

Interview Preparation Tips

Topics to prepare for HCL Group Information Technology Support Engineer interview:
  • Core Java
  • C
  • Aptitude
  • Reasoning
  • English
Interview preparation tips for other job seekers - Easy not that much tough
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Question about basics Java, collection, stream api,

Interview Preparation Tips

Topics to prepare for TCS Technology Analyst interview:
  • Collections
  • Stream api
  • Spring Boot
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2023. 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 - Technical 

(2 Questions)

  • Q1. Substring, collection, sql from creating table to all queries will ask to write
  • Q2. They ask to one notepad write prime example and example it.
Round 3 - Technical 

(1 Question)

  • Q1. Write substring, sql quire and prime no explain it
  • Ans. 

    Substring is a part of a string, SQL query is used to retrieve data from a database, and prime numbers are numbers divisible only by 1 and themselves.

    • Substring: a portion of a string, specified by its starting and ending indices

    • SQL query: a statement used to retrieve data from a database, using SELECT, FROM, WHERE, and other clauses

    • Prime numbers: numbers that are only divisible by 1 and themselves, such as 2, 3, 5, 7,

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on c# coding part and sql quires. Collections

Skills evaluated in this interview

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 Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. How do u explain class & object with a real time example
  • Ans. 

    A class is a blueprint for creating objects, while an object is an instance of a class.

    • A class defines the properties and behaviors that an object can have.

    • An object is created using the class as a template.

    • For example, consider a class called 'Car' that has properties like 'color', 'brand', and 'model'. An object of this class can be created as 'myCar' with specific values for these properties.

    • The class 'Car' can also...

  • Answered by AI
  • Q2. Multiple inheritance, method overloading, method overriding, jdbc, spring core
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation

HCLTech Interview FAQs

How many rounds are there in HCLTech Assistant General Manager Technology interview?
HCLTech interview process usually has 2 rounds. The most common rounds in the HCLTech interview process are Technical and One-on-one Round.
What are the top questions asked in HCLTech Assistant General Manager Technology interview?

Some of the top questions asked at the HCLTech Assistant General Manager Technology interview -

  1. Cybersecurity latest tr...read more
  2. Complete tech proc...read more
  3. Project expertise and implementat...read more

Tell us how to improve this page.

HCLTech Assistant General Manager Technology Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Join HCLTech Find your spark and discover what drives you forward

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
HCLTech Assistant General Manager Technology Salary
based on 17 salaries
₹25 L/yr - ₹36.2 L/yr
10% more than the average Assistant General Manager Technology Salary in India
View more details

HCLTech Assistant General Manager Technology Reviews and Ratings

based on 5 reviews

4.0/5

Rating in categories

3.5

Skill development

3.8

Work-life balance

3.3

Salary

3.8

Job security

3.4

Company culture

3.3

Promotions

3.4

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
23.2k salaries
unlock blur

₹1.7 L/yr - ₹8 L/yr

Technical Lead
21.1k salaries
unlock blur

₹6.9 L/yr - ₹25 L/yr

Senior Software Engineer
15.7k salaries
unlock blur

₹4 L/yr - ₹16.6 L/yr

Lead Engineer
14.9k salaries
unlock blur

₹4.2 L/yr - ₹14 L/yr

Analyst
14.3k salaries
unlock blur

₹0.8 L/yr - ₹6.5 L/yr

Explore more salaries
Compare HCLTech with

TCS

3.7
Compare

Wipro

3.7
Compare

Accenture

3.8
Compare

Cognizant

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