Upload Button Icon Add office photos

Filter interviews by

HHA eXchange Senior Test Engineer Interview Questions and Answers

Updated 11 Jun 2023

HHA eXchange Senior Test Engineer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Jun 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 - Technical 

(1 Question)

  • Q1. Manual testing concepts and SQL
Round 3 - Technical 

(1 Question)

  • Q1. More of attitude check

Interview questions from similar companies

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Digital testing concepts
  • Q2. What is RS232 & 422
  • Q3. What RPS in power testing
  • Q4. Digital communication
  • Q5. Semiconductor basic information

Interview Preparation Tips

Interview preparation tips for other job seekers - Noting
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Explain selenium C sharp automation work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Useless company no response from hr . They won’t give proper feedback reject the candidate without any proper reason.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

20 aptitude questions and 50 technical questions

Round 2 - One-on-one 

(10 Questions)

  • Q1. Tell me about your self
  • Q2. Explain automation framework
  • Ans. 

    Automation framework is a set of guidelines, rules, and tools that help in creating and executing automated tests.

    • Automation framework provides structure and guidelines for creating automated tests

    • It helps in organizing test scripts, data, and results

    • Frameworks can be data-driven, keyword-driven, or hybrid

    • Examples of automation frameworks include Selenium WebDriver, TestNG, and Robot Framework

  • Answered by AI
  • Q3. Java code for sorting without using built in function
  • Ans. 

    Sorting array of strings in Java without using built-in functions

    • Create a custom sorting algorithm like bubble sort, selection sort, or insertion sort

    • Compare each pair of strings and swap them if necessary to sort in ascending order

    • Repeat the process until the array is fully sorted

  • Answered by AI
  • Q4. Explain testng annotations and how will we use annotation in our framework
  • Ans. 

    TestNG annotations are used to control the flow of test methods and provide additional information about the test methods.

    • TestNG annotations are used to mark methods as test methods, setup methods, teardown methods, etc.

    • Annotations like @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite are commonly used in TestNG framework.

    • Annotations help in organizing and prioritizing test metho...

  • Answered by AI
  • Q5. What is testng listener
  • Ans. 

    TestNG listener is an interface that allows users to customize the test execution process.

    • TestNG listeners can be used to perform actions before or after a test method is run.

    • Listeners can be used to generate logs, take screenshots, or perform other custom actions during test execution.

    • Examples of TestNG listeners include ITestListener, ISuiteListener, and IInvokedMethodListener.

  • Answered by AI
  • Q6. What is overriding and where it is used in automation framework
  • Ans. 

    Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Overriding allows a subclass to provide a specific implementation of a method that is already provided by its superclass

    • It is used in automation frameworks to customize or extend the functionality of existing methods or classes

    • In automation testing, overriding...

  • Answered by AI
  • Q7. Explain bdd hooks and tags
  • Ans. 

    BDD hooks and tags are used in Behavior-Driven Development to set up preconditions and execute actions before or after scenarios, and to categorize and filter scenarios.

    • BDD hooks are used to set up preconditions and execute actions before or after scenarios

    • Tags are used to categorize and filter scenarios based on certain criteria

    • Hooks can be used to perform setup and teardown actions, such as initializing test data or ...

  • Answered by AI
  • Q8. Explain bdd background keyword
  • Ans. 

    BDD background keyword is used to define common preconditions for all scenarios in a feature file.

    • Used at the beginning of a feature file to define common preconditions

    • Helps in setting up the initial state for all scenarios in the feature file

    • Reduces duplication of steps in scenarios by defining them once in the background

  • Answered by AI
  • Q9. Explain ci/cd pipeline using jenkins
  • Ans. 

    CI/CD pipeline using Jenkins automates the process of integrating code changes and deploying them to production.

    • Jenkins is a popular automation server used for CI/CD

    • CI/CD stands for Continuous Integration/Continuous Deployment

    • In a CI/CD pipeline, code changes are automatically built, tested, and deployed

    • Jenkins pipelines can be defined using a Jenkinsfile which specifies the stages and steps of the pipeline

    • Example: Che...

  • Answered by AI
  • Q10. Explain rest assured and write a code for post and verify the response
  • Ans. 

    Rest Assured is a Java library for testing RESTful APIs. It simplifies API testing by providing a fluent interface to make HTTP requests and validate responses.

    • Rest Assured is commonly used in API automation testing to validate the functionality of RESTful APIs.

    • It allows testers to easily make HTTP requests, set headers, parameters, and body, and validate the response.

    • Here is an example code snippet for posting data an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all concepts in framwork

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is selenium?
  • Ans. 

    Selenium is a popular open-source automation testing tool used for web application testing.

    • Selenium is used for automating web browsers.

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

    • Selenium WebDriver is the most commonly used component for writing test scripts.

    • Selenium IDE is a record and playback tool for creating quick tests.

    • Selenium Grid is used for parallel testing across different browsers

  • Answered by AI
  • Q2. What are the waits available in selenium?
  • Ans. 

    In Selenium, waits are used to make the automation scripts wait for a certain amount of time before executing the next step.

    • Implicit Wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit Wait: Waits for a certain condition to occur before proceeding further.

    • Fluent Wait: Waits for a condition to be true with a specified polling frequency.

    • Thread.sleep(): Pauses the execution for a spe

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What are the oops Concepts in Java?
  • Ans. 

    Oops concepts in Java are the principles of Object Oriented Programming such as Inheritance, Polymorphism, Encapsulation, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Allows objects to be treated as instances of their parent class.

    • Encapsulation: Hides the internal state of an object and only exposes necessary functionality.

    • Abstraction: Shows only essent...

  • Answered by AI
  • Q2. Write a program to Duplicate Elements in Array?
  • Ans. 

    Program to duplicate elements in array of strings

    • Iterate through the array and check for duplicate elements

    • Store duplicate elements in a separate array

    • Return the array of duplicate elements

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Explain something about vlan and its working
  • Ans. 

    VLAN stands for Virtual Local Area Network and is used to segment a network into multiple virtual networks.

    • VLANs help in improving network performance, security, and management.

    • Each VLAN is a separate broadcast domain, reducing unnecessary traffic.

    • VLANs are configured at the switch level by assigning ports to specific VLANs.

    • VLAN tagging (802.1Q) adds a VLAN identifier to Ethernet frames to distinguish between different...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Defect lifecycle
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test were not competitive. They ask average questions.

Round 2 - Group Discussion 

In group discussion they ask testing and product based related questions.but iam a developer so it's difficult to handle.

Interview Preparation Tips

Topics to prepare for Amazon Senior Test Engineer interview:
  • Java
  • HTML
  • CSS
  • Javascript
  • Selinium
  • SQL
Interview preparation tips for other job seekers - Now a days most of the companies requires good communication skills. If struggle at during the interview, we can manage with good English communication because the interviewer got some hope from you.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Selenium and java questions Code to write
  • Q2. Questions on api testing
Round 3 - One-on-one 

(1 Question)

  • Q1. Questions related to Selenium and java
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What is your current CTC?
  • Q2. What is your expected CTC?
Round 2 - Technical 

(6 Questions)

  • Q1. Tell me about yourself?
  • Q2. What is bug life cycle?
  • Q3. What are types of Testing?
  • Q4. What is sanity testing?
  • Q5. What is smoke testing?
  • Q6. What is the process you will follow once build is received?

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice interview. Please be focus on questions correctly and answer in calm way.

HHA eXchange Interview FAQs

How many rounds are there in HHA eXchange Senior Test Engineer interview?
HHA eXchange interview process usually has 3 rounds. The most common rounds in the HHA eXchange interview process are Technical and Resume Shortlist.
What are the top questions asked in HHA eXchange Senior Test Engineer interview?

Some of the top questions asked at the HHA eXchange Senior Test Engineer interview -

  1. Manual testing concepts and ...read more
  2. More of attitude ch...read more

Tell us how to improve this page.

HHA eXchange Senior Test Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
HHA eXchange Senior Test Engineer Salary
based on 12 salaries
₹12 L/yr - ₹14.2 L/yr
23% more than the average Senior Test Engineer Salary in India
View more details
Software Engineer
59 salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Associate Software Engineer
28 salaries
unlock blur

₹6.6 L/yr - ₹10.6 L/yr

Senior Software Engineer
17 salaries
unlock blur

₹10.6 L/yr - ₹22.8 L/yr

Test Engineer
15 salaries
unlock blur

₹7 L/yr - ₹10.5 L/yr

Senior Test Engineer
12 salaries
unlock blur

₹12 L/yr - ₹14.2 L/yr

Explore more salaries
Compare HHA eXchange with

Portea Medical

4.3
Compare

Healthcare At Home

3.7
Compare

Care24

4.4
Compare

Zoctr Healthcare

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