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

Compare button icon Compare button icon Compare
3.6

based on 5.6k Reviews

Filter interviews by

Hexaware Technologies Quality Assurance Interview Questions and Answers

Updated 20 Sep 2024

Hexaware Technologies Quality Assurance Interview Experiences

2 interviews found

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Manual Testing related Questions
  • Q2. Scenario based Questions
  • Q3. Past Project related Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Everything is Good. Easy questions were asked I gave all correct answers still HR replies me in follow up that my interview is not positive. I mean what they exactly want. Pathetic behavior.

I applied via Naukri.com and was interviewed in Apr 2022. 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 - Aptitude Test 
Round 3 - HR 

(1 Question)

  • Q1. My self and qualifications

Interview Preparation Tips

Interview preparation tips for other job seekers - Self information and qualifications

Quality Assurance Interview Questions Asked at Other Companies

Q1. Explain your Project. Explain V model. Explain SDLC. Explain STLC ... read more
Q2. What is pdca cycle, why in spc cpk is required ? What is 4 M chan ... read more
Q3. What is validation, Qualifications and what is GMP, which role in ... read more
Q4. When setup approval required? What is difference between dock aud ... read more
asked in JK Tyres
Q5. What is the difference between the good product and bad product

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(6 Questions)

  • Q1. Select 3 rd highest salary from employee table
  • Ans. 

    To select the 3rd highest salary from the employee table, you can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query like 'SELECT salary FROM employee ORDER BY salary DESC LIMIT 1 OFFSET 2' to get the 3rd highest salary.

    • The 'ORDER BY' clause sorts the salaries in descending order, 'LIMIT 1' limits the result to 1 row, and 'OFFSET 2' skips the first two rows.

    • Make sure to adjust the 'OFFSET' value if

  • Answered by AI
  • Q2. Difference between put and patch
  • Ans. 

    Put is used to create or replace a resource, while patch is used to update a resource partially.

    • Put is idempotent, meaning multiple identical requests will have the same effect as a single request

    • Patch is not idempotent, as multiple identical requests may have different effects

    • Put requires the client to send the entire updated resource, while patch only requires the specific changes to be sent

  • Answered by AI
  • Q3. Difference between == and equals in string
  • Ans. 

    The == operator checks for reference equality, while the equals method checks for value equality in strings.

    • Use == to check if two string variables refer to the same object in memory.

    • Use equals() method to check if two string variables have the same sequence of characters.

    • Example: String str1 = "hello"; String str2 = "hello"; str1 == str2 will return false, but str1.equals(str2) will return true.

  • Answered by AI
  • Q4. Difference way of declaring String
  • Ans. 

    String can be declared using double quotes, single quotes, or the String constructor.

    • Declare using double quotes: String str1 = "Hello";

    • Declare using single quotes: String str2 = 'World';

    • Declare using String constructor: String str3 = new String("Java");

  • Answered by AI
  • Q5. Difference between String builder and String buffer
  • Ans. 

    String builder is not synchronized, while String buffer is synchronized.

    • String builder is faster than String buffer because it is not synchronized.

    • String buffer is thread-safe, while String builder is not.

    • String builder is preferred for single-threaded applications, while String buffer is preferred for multi-threaded applications.

  • Answered by AI
  • Q6. Convert array into arraylist
  • Ans. 

    Convert array to ArrayList of strings

    • Create a new ArrayList

    • Use Arrays.asList() method to convert array to ArrayList

    • Example: String[] array = {"apple", "banana", "orange"}; ArrayList list = new ArrayList<>(Arrays.asList(array));

Answered by AI

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There were around 20 questions in aptitude section to appear

Round 2 - Assignment 

It had 50 technical knowledge based questions on testing domain

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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. Related to your resume
  • Q2. Related to your skills
Round 3 - Technical 

(1 Question)

  • Q1. Related to given JD
Round 4 - Technical 

(1 Question)

  • Q1. Related to JD and resume
Round 5 - HR 

(1 Question)

  • Q1. Personal query and other personal stuff
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

It was basic string and Collection questions. Lot of questions on core java and some selenium framework and architecture related questions.

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(6 Questions)

  • Q1. Select 3 rd highest salary from employee table
  • Ans. 

    To select the 3rd highest salary from the employee table, you can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query like 'SELECT salary FROM employee ORDER BY salary DESC LIMIT 1 OFFSET 2' to get the 3rd highest salary.

    • The 'ORDER BY' clause sorts the salaries in descending order, 'LIMIT 1' limits the result to 1 row, and 'OFFSET 2' skips the first two rows.

    • Make sure to adjust the 'OFFSET' value if

  • Answered by AI
  • Q2. Difference between put and patch
  • Ans. 

    Put is used to create or replace a resource, while patch is used to update a resource partially.

    • Put is idempotent, meaning multiple identical requests will have the same effect as a single request

    • Patch is not idempotent, as multiple identical requests may have different effects

    • Put requires the client to send the entire updated resource, while patch only requires the specific changes to be sent

  • Answered by AI
  • Q3. Difference between == and equals in string
  • Ans. 

    The == operator checks for reference equality, while the equals method checks for value equality in strings.

    • Use == to check if two string variables refer to the same object in memory.

    • Use equals() method to check if two string variables have the same sequence of characters.

    • Example: String str1 = "hello"; String str2 = "hello"; str1 == str2 will return false, but str1.equals(str2) will return true.

  • Answered by AI
  • Q4. Difference way of declaring String
  • Ans. 

    String can be declared using double quotes, single quotes, or the String constructor.

    • Declare using double quotes: String str1 = "Hello";

    • Declare using single quotes: String str2 = 'World';

    • Declare using String constructor: String str3 = new String("Java");

  • Answered by AI
  • Q5. Difference between String builder and String buffer
  • Ans. 

    String builder is not synchronized, while String buffer is synchronized.

    • String builder is faster than String buffer because it is not synchronized.

    • String buffer is thread-safe, while String builder is not.

    • String builder is preferred for single-threaded applications, while String buffer is preferred for multi-threaded applications.

  • Answered by AI
  • Q6. Convert array into arraylist
  • Ans. 

    Convert array to ArrayList of strings

    • Create a new ArrayList

    • Use Arrays.asList() method to convert array to ArrayList

    • Example: String[] array = {"apple", "banana", "orange"}; ArrayList list = new ArrayList<>(Arrays.asList(array));

Answered by AI

Skills evaluated in this interview

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

Java Selenium Coding

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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 - Technical 

(2 Questions)

  • Q1. Related to your resume
  • Q2. Related to your skills
Round 3 - Technical 

(1 Question)

  • Q1. Related to given JD
Round 4 - Technical 

(1 Question)

  • Q1. Related to JD and resume
Round 5 - HR 

(1 Question)

  • Q1. Personal query and other personal stuff

I applied via Naukri.com and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Mainly on testing fundamentals and management tools

Round 2 - Technical 

(2 Questions)

  • Q1. Framework and few programming questions
  • Q2. As per project experience
Round 3 - Technical 

(1 Question)

  • Q1. Oops concept and programming
Round 4 - HR 

(1 Question)

  • Q1. Normal hr discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to brush up in all the oops concepts

Hexaware Technologies Interview FAQs

How many rounds are there in Hexaware Technologies Quality Assurance interview?
Hexaware Technologies interview process usually has 2 rounds. The most common rounds in the Hexaware Technologies interview process are Resume Shortlist, Aptitude Test and HR.
What are the top questions asked in Hexaware Technologies Quality Assurance interview?

Some of the top questions asked at the Hexaware Technologies Quality Assurance interview -

  1. Manual Testing related Questi...read more
  2. Scenario based Questi...read more

Tell us how to improve this page.

Hexaware Technologies Quality Assurance Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Join Hexaware Technologies Experience the impact across your digital ecosystem and beyond.
Senior Software Engineer
3.8k salaries
unlock blur

₹5.3 L/yr - ₹20 L/yr

System Analyst
3k salaries
unlock blur

₹6.7 L/yr - ₹29 L/yr

Software Engineer
2.9k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Senior Executive
2k salaries
unlock blur

₹0.8 L/yr - ₹6.2 L/yr

Technical Architect
1.9k salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Explore more salaries
Compare Hexaware Technologies with

Cognizant

3.8
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

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