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 Python Automation Engineer Interview Questions and Answers

Updated 11 Aug 2022

HCLTech Python Automation Engineer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Interview start with self introduction then ask some coding questions to check your programming logic .
  • Q2. Questions also from OOPS python.
  • Q3. They ask about ,what is the output of this program

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with Python programing with all oops concepts.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic questions of Python and pytest framework
  • Q2. Questions will be based on the resume in hand

Interview Preparation Tips

Interview preparation tips for other job seekers - Be genuine with your resume. Understand the project, that you handle. Be aware of the software market and be bold to open up with your views. It is not always true, that when new technologies come up, the old goes down. It is the less adaptability of the technology, that pulls it back.

I appeared for an interview before Apr 2020.

Interview Questionnaire 

3 Questions

  • Q1. Data structure algorithms and basics of programming languages
  • Q2. Opps concept
  • Q3. Ask to write 2 codes they provide problem statements for that

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Superset and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude consists of general thinking, pseudo code, and game aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. Resume mentioned technologies are going to ask you in the interview.
  • Q2. Any knowledge about web technologies and questions on Angular, JavaScript and java.
  • Q3. How would you manage your team. If you are on leave and you don't find any network to connect with them.
  • Ans. 

    Delegate responsibilities and establish clear communication channels for team members to handle situations in my absence.

    • Assign clear roles and responsibilities to each team member

    • Establish communication channels and protocols for emergencies

    • Ensure team members have access to necessary resources and information

    • Provide training and support to team members to handle unexpected situations

    • Regularly check in with team membe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you perform well. Try mock interviews before your main interview. Try to fill out the resume with the technologies that you know well.

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Self introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - say individual ideas,plans, story's.say different opinions,speek confidentially, correctly answer Yes or no questions, correctly say interested and confidential job,

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

I applied via Campus Placement and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked about oops's concept, SQL queries, and Questions regarding my projects. They asked if have worked on any CLOUD technologies like AWS, GCP, or Azure.

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall experience was very nice, in this, they have tested on basis or aptitude and General coding round. If got selected then there will be a technical and HR round.

I applied via Company Website and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Implement stack using queue
  • Ans. 

    Implement a stack using a queue data structure.

    • Create two queues, q1 and q2.

    • Push operation: Enqueue the element to q1.

    • Pop operation: Dequeue all elements from q1 to q2 except the last one. Dequeue the last element from q1 and return it. Swap q1 and q2.

    • Top operation: Dequeue all elements from q1 to q2 except the last one. Dequeue the last element from q1 and return it. Enqueue the element to q2. Swap q1 and q2.

    • isEmpty o

  • Answered by AI
  • Q2. Pallindome string
  • Q3. Address of a particular element in an array. And adress of 0th index is given
  • Ans. 

    Finding address of an element in an array given the address of 0th index.

    • Calculate the offset of the desired element from the 0th index address and add it to the 0th index address.

    • Address of ith element = address of 0th element + i * size of each element.

    • Example: Address of 3rd element in an array of strings = address of 0th element + 3 * size of string.

  • Answered by AI
  • Q4. Insertion sort

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong at basic and ready to face conceptual question

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Sep 2021. 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 - Technical 

(2 Questions)

  • Q1. I was asked 2 coding question to write on paper few puzzles question related to math
  • Q2. 1. Write code to count number of hand shakes between N number of people. 2. Create a class and write function using the OOPs concept
  • Ans. 

    Code to count handshakes between N people and a class using OOPs concept.

    • For counting handshakes, use a loop to iterate through each person and add up the handshakes with the remaining people.

    • For the class, define attributes and methods based on the requirements and use encapsulation, inheritance, and polymorphism concepts.

    • Example: class Person with attributes name and age, and method greet(). Class Employee inherits f...

  • Answered by AI
Round 3 - Case Study 

WAs asked about my previous experience and projects related query
Given one scenario and asked my approached to solve it

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basics of programming fundamentals and projects you worked upon

HCLTech Interview FAQs

How many rounds are there in HCLTech Python Automation Engineer interview?
HCLTech interview process usually has 1 rounds. The most common rounds in the HCLTech interview process are Technical.
How to prepare for HCLTech Python Automation Engineer 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 HCLTech. The most common topics and skills that interviewers at HCLTech expect are Networking, Python, Automation, API and Automation Framework.
What are the top questions asked in HCLTech Python Automation Engineer interview?

Some of the top questions asked at the HCLTech Python Automation Engineer interview -

  1. They ask about ,what is the output of this prog...read more
  2. Questions also from OOPS pyth...read more

Tell us how to improve this page.

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.7k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
HCLTech Python Automation Engineer Salary
based on 35 salaries
₹3.6 L/yr - ₹10 L/yr
14% less than the average Python Automation Engineer Salary in India
View more details

HCLTech Python Automation Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

-

Skill development

-

Work-life balance

-

Salary

-

Job security

-

Company culture

-

Promotions

-

Work satisfaction

Explore 1 Review and Rating
Software Engineer
23.4k salaries
unlock blur

₹1.9 L/yr - ₹8 L/yr

Technical Lead
21.6k salaries
unlock blur

₹7 L/yr - ₹28 L/yr

Senior Software Engineer
16k salaries
unlock blur

₹4.5 L/yr - ₹17 L/yr

Lead Engineer
15.8k salaries
unlock blur

₹4.1 L/yr - ₹14 L/yr

Analyst
14.7k 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.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview