Premium Employer

i

This company page is being actively managed by Hexaware Technologies Team. If you also belong to the team, you can get access from here

Hexaware Technologies Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Hexaware Technologies Test Lead Interview Questions and Answers

Updated 6 Nov 2024

Hexaware Technologies Test Lead Interview Experiences

2 interviews found

Test Lead Interview Questions & Answers

user image Prabu Dhandayuthapani

posted on 6 Nov 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - HR 

(2 Questions)

  • Q1. About salary discuss and joining date
  • Q2. Asking to early joining with joining bonus

Test Lead Interview Questions & Answers

user image Anonymous

posted on 8 Oct 2022

I applied via Company Website and was interviewed in Sep 2022. There were 2 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 

(3 Questions)

  • Q1. Api Testing related questions
  • Q2. Rest Assured Framework
  • Q3. Basic java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on java topics and selenium , bit of api testing knowledge is sufficient

Test Lead Interview Questions Asked at Other Companies

asked in Wipro
Q1. In an Agile project, can you perform automation within a sprint?
Q2. What are the differences between a Test Plan and a Test Strategy? ... read more
asked in Wipro
Q3. What are all the status codes available in API testing?
asked in Wipro
Q4. How do you click on an element located at the bottom of the page?
Q5. What are the different blockers that you might have seen during a ... read more

What people are saying about Hexaware Technologies

View All
a senior developer
4d
Navigating the 90-Day Notice Period Dilemma
I’m currently in a challenging situation that I believe many professionals can relate to. I’ve served 30 days of my 90-day notice period, but the new opportunity I’m excited about requires me to join within 60 days. Unfortunately, my current employer is firm on the full 90-day exit policy due to critical project commitments, and the new employer is unable to extend the joining date beyond their set timeline. This has left me stuck between two decisions—neither of which feels ideal. While I respect the commitment I’ve made to my current organization, I also don’t want to miss out on a promising role that aligns perfectly with my career goals. If you’ve been in a similar situation, how did you handle it? Any suggestions, perspectives, or shared experiences would mean a lot right now. #NoticePeriod #CareerTransition #ProfessionalDilemma #JobChange #CareerAdvice
Got a question about Hexaware Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude
Easy group discussion topics
Logical thinking

Round 2 - Group Discussion 

Everyone will sit in a row and single topic with be given as a bedet

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview will be on logical thinking

I appeared for an interview before Aug 2021.

Round 1 - Aptitude Test 

English communication, grammar, and aptitude questions

Round 2 - Technical 

(2 Questions)

  • Q1. They will ask about the projects you did and ask technical questions based on the languages mentioned in the resume.
  • Q2. Inheritance, reversing an array and linked list
Round 3 - Mangerial 

(1 Question)

  • Q1. They will ask puzzles and role related questions and personality based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and don't panic while answering

I applied via Monster and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How to do work?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing to share special
Round 1 - Technical 

(1 Question)

  • Q1. What is dom,pom, different types of locater
  • Ans. 

    DOM stands for Document Object Model, POM stands for Page Object Model. Different types of locators are ID, Name, Class, Tag Name, Link Text, Partial Link Text, CSS Selector and XPath.

    • DOM is a programming interface for web documents. It represents the page so that programs can change the document structure, style, and content.

    • POM is a design pattern that helps to create an object repository for web UI elements. It sepa...

  • Answered by AI
Round 2 - Coding Test 

What is string reverse string of singe word

Round 3 - HR 

(1 Question)

  • Q1. Salary discussions and ask about stability

Interview Preparation Tips

Interview preparation tips for other job seekers - Daily ready aboy selenium and studied about advnace search of value

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Difference between Test Scenario and Test cases
  • Ans. 

    Test scenarios are high-level descriptions of the functionality to be tested, while test cases are detailed steps to validate the scenarios.

    • Test scenarios are broad and cover multiple test cases.

    • Test cases are specific steps to validate a particular scenario.

    • Test scenarios are usually created at the beginning of testing, while test cases are derived from scenarios.

    • Test scenarios are used for high-level planning and est...

  • Answered by AI
  • Q2. Use cases for application
  • Ans. 

    Use cases for application involve identifying different scenarios in which the application can be used to meet user needs.

    • Testing different user interactions

    • Validating system functionality

    • Identifying edge cases

    • Ensuring compatibility with different devices

    • Verifying data integrity

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Group Discussion 

Common topics technology

Round 2 - Coding Test 

Basic coding problem

Interview experience
3
Average
Difficulty level
-
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn

Round 1 - One-on-one 

(4 Questions)

  • Q1. Opps concepts Abrction
  • Ans. 

    Abstraction in OOP simplifies complex systems by hiding unnecessary details and exposing only essential features.

    • Abstraction allows focusing on high-level functionalities while hiding implementation details.

    • Example: A car's interface (steering wheel, pedals) abstracts the complex mechanics of the engine.

    • In programming, abstract classes and interfaces are used to define common behaviors without specifying how they work.

    • ...

  • Answered by AI
  • Q2. Testng annotatations
  • Q3. Java code for reverse the string
  • Ans. 

    Java code to reverse a string using StringBuilder

    • Create a StringBuilder object with the input string

    • Use the reverse() method of StringBuilder to reverse the string

    • Convert the reversed StringBuilder object back to a string using toString()

  • Answered by AI
  • Q4. They have given link on that ask to find xpath
  • Ans. 

    XPath is a language used to navigate through elements and attributes in XML documents, crucial for web automation testing.

    • XPath can be absolute (e.g., /html/body/div) or relative (e.g., //div[@class='example']).

    • Use functions like contains() to match partial text (e.g., //a[contains(text(),'Click here')]).

    • Axes like parent, child, and sibling help navigate the document structure (e.g., //div/child::p).

    • XPath supports pred...

  • 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 Referral and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Fibonacci seriers
  • Q2. Oops concepts java
Round 2 - Technical 

(2 Questions)

  • Q1. Find min and max number in an array
  • Ans. 

    Find min and max number in an array of strings

    • Convert array elements to integers for comparison

    • Use built-in functions like Math.min() and Math.max()

    • Handle edge cases like empty array or non-numeric elements

  • Answered by AI
  • Q2. Test scenario for elevator
  • Ans. 

    Testing an elevator involves various scenarios to ensure safety, functionality, and user experience.

    • Check elevator operation with different weight loads (e.g., 0%, 50%, 100% capacity).

    • Test emergency features like the alarm button and emergency stop.

    • Verify door operation: open/close timing and obstruction detection.

    • Simulate power failure and check if the elevator returns to the nearest floor.

    • Test user interface responsi...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about your self

Skills evaluated in this interview

Hexaware Technologies Interview FAQs

How many rounds are there in Hexaware Technologies Test Lead interview?
Hexaware Technologies interview process usually has 1-2 rounds. The most common rounds in the Hexaware Technologies interview process are Resume Shortlist, Technical and HR.
How to prepare for Hexaware Technologies Test Lead 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 Hexaware Technologies. The most common topics and skills that interviewers at Hexaware Technologies expect are Test Lead, Selenium, Automation Testing, Python and Testing Tools.
What are the top questions asked in Hexaware Technologies Test Lead interview?

Some of the top questions asked at the Hexaware Technologies Test Lead interview -

  1. Api Testing related questi...read more
  2. Rest Assured Framew...read more
  3. basic java questi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Join Hexaware Technologies Experience the impact across your digital ecosystem and beyond.

Test Lead Interview Questions from Similar Companies

View all
Hexaware Technologies Test Lead Salary
based on 233 salaries
₹12.5 L/yr - ₹20.8 L/yr
5% less than the average Test Lead Salary in India
View more details

Hexaware Technologies Test Lead Reviews and Ratings

based on 18 reviews

3.1/5

Rating in categories

3.8

Skill development

3.0

Work-life balance

2.7

Salary

2.6

Job security

2.9

Company culture

2.6

Promotions

3.0

Work satisfaction

Explore 18 Reviews and Ratings
Test Lead Performance

Pune,

Chennai

+1

9-11 Yrs

₹ 11-16 LPA

Explore more jobs
Senior Software Engineer
3.8k salaries
unlock blur

₹8.4 L/yr - ₹16.2 L/yr

Software Engineer
3.1k salaries
unlock blur

₹4 L/yr - ₹9 L/yr

System Analyst
3k salaries
unlock blur

₹12.4 L/yr - ₹22 L/yr

Senior Executive
2.2k salaries
unlock blur

₹1.8 L/yr - ₹5.2 L/yr

Technical Architect
2.2k salaries
unlock blur

₹17.3 L/yr - ₹31 L/yr

Explore more salaries
Compare Hexaware Technologies with

Cognizant

3.7
Compare

TCS

3.6
Compare

DXC Technology

3.6
Compare

Mphasis

3.3
Compare
write
Share an Interview