Upload Button Icon Add office photos
Engaged Employer

i

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

TestingXperts Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TestingXperts Senior Test Engineer Interview Questions and Answers

Updated 13 May 2024

TestingXperts Senior Test Engineer Interview Experiences

5 interviews found

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

(4 Questions)

  • Q1. Java basics OOPs concepts
  • Q2. Interface Abstract encapsulation
  • Q3. Actions class, alerts
  • Q4. String buffer, builder, immutable

Interview Preparation Tips

Interview preparation tips for other job seekers - Went really good
Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Apr 2023. There were 5 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 - HR 

(1 Question)

  • Q1. Tell me about yourself and a little bit about ETL and the Technologies worked on.
Round 3 - Technical 

(1 Question)

  • Q1. Asked me about joins, and asked me to write SQL queries.
Round 4 - Technical 

(1 Question)

  • Q1. In the L2 Technical round they asked me to write some more complex SQL queries and aslo asked some scenario based questions l.
Round 5 - Behavioral 

(1 Question)

  • Q1. The 3 round was a mix of technical and management round. Asked me about everything that I have written on my resume and some more scenarios.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do no over estimate yourself.

Senior Test Engineer Interview Questions Asked at Other Companies

asked in Sapiens
Q1. From Selenium -> Which Automation framework I have implemented ... read more
asked in LTIMindtree
Q2. What should be done when a defect is found in production?
asked in LTIMindtree
Q3. How do you performed incrimental load in your project?
asked in LTIMindtree
Q4. What is meant by regression and retesting?
asked in CGI Group
Q5. What is the difference between CHAR and VARCHAR2 data types in SQ ... read more
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 Mar 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. I applied for a QA position . Questions are related to both Manual and automation on JavaScript and cypress
  • Q2. Logic to print vowels in a given string in any programming language
  • Ans. 

    To print vowels in a given string, iterate through each character and check if it is a vowel.

    • Create a string variable to store vowels (aeiouAEIOU)

    • Iterate through each character in the given string

    • Check if the character is present in the vowels string

    • If yes, print the character

  • Answered by AI
  • Q3. Manual testing questions 1) What is regression and Retesting 2)How will you create bugs in your project 3) Scrum ceremonies in detail 4) Cypress related commands 5) basics of Js
  • Ans. 

    Questions related to manual testing, Scrum ceremonies, Cypress commands, and basics of JS.

    • Regression testing is retesting of previously tested functionality to ensure that changes or fixes have not introduced new defects.

    • Retesting is testing of a previously failed test case after the defect has been fixed.

    • Creating bugs intentionally is not a good practice. However, one can create test scenarios that have a high probabi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the job description thoroughly and practice the tools if you keep anything on resume on automation

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Had one round of technical . Basic questions on Testing, Salesforce ,Test Methodologies, RTM , ALM,JIRA

Interview Preparation Tips

Interview preparation tips for other job seekers - Was a good experience . Interviewer asked practical questions so if you are experienced enough and worked on things then only you will be able to answer .

TestingXperts interview questions for designations

 Test Engineer

 (8)

 Test Manager

 (1)

 Senior QA Engineer

 (2)

 Senior Software Engineer

 (1)

 Senior Software Engineer Testing

 (1)

 Software Engineer

 (3)

 QA Engineer

 (1)

 Devops Engineer

 (1)

I applied via Naukri.com and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. General software testing questions. To write test cases for hypothetical requirements. Mobile testing questions, API status codes.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and be confident. They will overlook a few shortcomings if you convince them that you're capable of learning, the only way to do so, is by thoroughly preparing the topics you've mentioned in your CV

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of testing, JIRA, Gail methodology

Interview Preparation Tips

Interview preparation tips for other job seekers - Detailed process and positive atmosphere created while interviewing.

I applied via Naukri.com and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. My previous project knowledge and role and responsibilities
  • Q2. Manual testing, Functional testing, Regression testing, Defect life cycle, Asked me to write a Test scenarios for sample requirement
  • Q3. Agile scrum testing. Quick description about the role of a tester in a sprint
  • Q4. Test management tools like ALM JIRA and Rally knowledge
  • Q5. Defect life cycle

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

  • Q1. 

    Candies Distribution Problem Statement

    Prateek is a kindergarten teacher with a mission to distribute candies to students based on their performance. Each student must get at least one candy, and if two s...

  • Ans. 

    The task is to distribute candies to students based on their performance while minimizing the total candies distributed.

    • Create an array to store the minimum candies required for each student.

    • Iterate through the students' ratings array to determine the minimum candies needed based on the adjacent ratings.

    • Consider both left-to-right and right-to-left passes to ensure fair distribution.

    • Keep track of the total candies dist

  • Answered by AI
  • Q2. 

    Merge Sort Problem Statement

    You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Explanation:

    The Merge Sort...

  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Use Divide and Conquer approach to recursively divide the input array into two halves.

    • Merge the sorted halves to produce a completely sorted array.

    • Ensure the implementation handles the constraints specified in the problem statement.

    • Example: For input [3, 1, 4, 1, 5], the output should be [1, 1, 3, 4, 5].

  • Answered by AI

Interview Preparation Tips

Eligibility criteria8CGPAThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, apti , programming language , SETime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Do not put false things on resume.
Tip 2 : Have some projects on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in May 2021.

Interview Questionnaire 

4 Questions

  • Q1. 1Questions related to API
  • Q2. Basic Manual Testing, Test Cases
  • Q3. SQL Basics Queries
  • Q4. Basic Selenium Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - 3 rounds were conducted and process was smooth.
Round 1 - Group Discussion 

Nothing

Round 2 - Technical 

(1 Question)

  • Q1. Python Sql Linux CLI
Round 3 - One-on-one 

(1 Question)

  • Q1. General discussions on learning

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answerything you will clear

TestingXperts Interview FAQs

How many rounds are there in TestingXperts Senior Test Engineer interview?
TestingXperts interview process usually has 2-3 rounds. The most common rounds in the TestingXperts interview process are Technical, Resume Shortlist and HR.
How to prepare for TestingXperts Senior Test 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 TestingXperts. The most common topics and skills that interviewers at TestingXperts expect are API Testing, Test Engineering, Automation Testing, Selenium and Appium.
What are the top questions asked in TestingXperts Senior Test Engineer interview?

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

  1. Manual testing questions 1) What is regression and Retesting 2)How will you cr...read more
  2. Logic to print vowels in a given string in any programming langu...read more
  3. Had one round of technical . Basic questions on Testing, Salesforce ,Test ...read more

Tell us how to improve this page.

TestingXperts Senior Test Engineer Interview Process

based on 7 interviews

2 Interview rounds

  • Technical Round
  • HR Round
View more
TestingXperts Senior Test Engineer Salary
based on 310 salaries
₹3.9 L/yr - ₹16 L/yr
10% less than the average Senior Test Engineer Salary in India
View more details

TestingXperts Senior Test Engineer Reviews and Ratings

based on 53 reviews

4.2/5

Rating in categories

3.9

Skill development

4.1

Work-life balance

3.7

Salary

3.9

Job security

4.1

Company culture

3.6

Promotions

3.9

Work satisfaction

Explore 53 Reviews and Ratings
Senior Test Engineer
310 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Test Engineer
260 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Test Lead
95 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
57 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare TestingXperts with

Cigniti Technologies

3.7
Compare

Think Future Technologies

4.0
Compare

Indium Software

4.0
Compare

Qualitest

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