Upload Button Icon Add office photos

Filter interviews by

SE - Mentor QA Engineer Interview Questions, Process, and Tips

Updated 7 Sep 2024

Top SE - Mentor QA Engineer Interview Questions and Answers

SE - Mentor QA Engineer Interview Experiences

2 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Sep 2022

I applied via Naukri.com and was interviewed in Mar 2022. There were 4 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. Different types of testing
  • Ans. 

    Different types of testing include unit testing, integration testing, system testing, and acceptance testing.

    • Unit testing: Testing individual components or units of code.

    • Integration testing: Testing the interaction between different components or modules.

    • System testing: Testing the entire system as a whole.

    • Acceptance testing: Testing to ensure the system meets the requirements and is ready for deployment.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Difference between sanity and regression testing
  • Ans. 

    Sanity testing is a quick check to ensure the basic functionality of the application, while regression testing is a comprehensive check to ensure that new changes do not affect existing functionality.

    • Sanity testing is performed on a new build or a small change in the code

    • Regression testing is performed on a modified build to ensure that existing functionality is not impacted

    • Sanity testing is a subset of regression test...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary expectations and location preference

Interview Preparation Tips

Topics to prepare for SE - Mentor QA Engineer interview:
  • Testing
Interview preparation tips for other job seekers - It was good.Had three rounds.first two were technical interview and last one was with HR

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Explain framework
  • Ans. 

    A framework is a set of guidelines, libraries, and tools used to develop and maintain software applications.

    • Provides structure and organization to code

    • Promotes code reusability

    • Facilitates automation and testing

    • Examples: Selenium for web automation, JUnit for unit testing

  • Answered by AI
  • Q2. What is collection
  • Ans. 

    A collection is a group of related objects or data items that are stored together.

    • Collections can be used to store and manipulate groups of data in programming languages.

    • Examples include arrays, lists, sets, and maps.

    • Collections provide methods for adding, removing, and accessing elements within the group.

  • Answered by AI
  • Q3. What is selenium
  • Ans. 

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

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

    • It can automate web browsers and simulate user interactions.

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

    • Selenium Grid allows running tests on different machines and browsers in parallel.

    • Selenium IDE is a record an

  • Answered by AI

Skills evaluated in this interview

QA Engineer Interview Questions Asked at Other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many mi ... read more
Q2. Suppose your manager gave you one task which has to be complete i ... read more
Q3. how to access amazon page directly directly with out using driver ... read more
Q4. 100 apples in 5 consecutive days, each day 6 more than the previo ... read more
Q5. 7)how do you drive your data in automation , how do you validate ... read more

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Regression testing.
  • Ans. 

    Regression testing is the process of retesting a software application to ensure that new code changes have not adversely affected existing functionality.

    • Performed after code changes to verify that existing features still work correctly

    • Helps prevent the introduction of new bugs or issues

    • Can be automated to save time and effort

    • Examples: running test cases after a software update, checking for bugs after adding new featur

  • Answered by AI
  • Q2. Difference between list and tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot.

    • List uses square brackets [], tuple uses parentheses ().

    • List is used for collections of items that may change, tuple for fixed collections.

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
  • Q3. Program to check if the no. is prime
  • Ans. 

    A program to check if a number is prime or not

    • Iterate from 2 to square root of the number and check if it divides the number evenly

    • If any number divides the given number, it is not prime

    • If no number divides the given number, it is prime

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Program to find pallindrome.
  • Ans. 

    Program to find palindrome in an array of strings.

    • Iterate through each string in the array

    • Reverse each string and compare with original string

    • If they are equal, it is a palindrome

  • Answered by AI
  • Q2. How to find element using css selector.
  • Ans. 

    To find an element using CSS selector, you can use the document.querySelector() method.

    • Use document.querySelector() method with the CSS selector as the argument.

    • Make sure the CSS selector is unique to the element you want to find.

    • You can also use document.querySelectorAll() to find multiple elements.

  • Answered by AI
Round 3 - Case Study 

Scenario based questions

Skills evaluated in this interview

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

(5 Questions)

  • Q1. API testing related questions were asked
  • Q2. What is api testing
  • Ans. 

    API testing is a type of software testing that involves testing APIs directly to ensure they meet functionality, reliability, performance, and security requirements.

    • API testing involves testing the functionality, reliability, performance, and security of APIs.

    • It focuses on verifying that the API meets its specifications and works as expected.

    • API testing can be done manually or using automated tools like Postman or Soap...

  • Answered by AI
  • Q3. How do you log bugs
  • Ans. 

    I log bugs by documenting detailed steps to reproduce, including screenshots and logs.

    • Document detailed steps to reproduce the bug

    • Include screenshots or videos if applicable

    • Attach relevant logs or error messages

    • Assign severity and priority levels to the bug

    • Track bug status and resolution in a bug tracking tool

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

    Agile methodology is a software development approach that emphasizes flexibility, collaboration, and iterative development.

    • Focus on delivering working software in short iterations

    • Emphasizes collaboration between cross-functional teams

    • Allows for changes and adjustments throughout the development process

    • Common practices include daily stand-up meetings, sprint planning, and retrospectives

  • Answered by AI
  • Q5. What is selenium framework
  • Ans. 

    Selenium framework is a set of tools, libraries, and best practices used for automated testing of web applications.

    • Selenium framework allows for writing and executing automated tests for web applications.

    • It provides features like test case management, reporting, and integration with CI/CD tools.

    • Popular frameworks built on top of Selenium include TestNG, JUnit, and Cucumber.

    • Selenium WebDriver is a key component of the f...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Write a program to reverse a string
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy very simple questions sked in test

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Explain SDLC
  • Ans. 

    SDLC stands for Software Development Life Cycle, a process used to design, develop, and test software.

    • SDLC is a systematic process for building software applications.

    • It includes phases like planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has specific goals and deliverables to ensure the quality and success of the software.

    • Examples of SDLC models include Waterfall, Agile, and DevOps.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackerank platform with multiple questions.

Round 2 - Technical 

(1 Question)

  • Q1. Oops, Java, Java collection, String

QA Engineer Interview Questions & Answers

Wipro user image Vinay Devendra

posted on 10 Oct 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. WAP to run same test case 100 times
  • Ans. 

    Write a program to run the same test case 100 times

    • Use a loop to iterate 100 times

    • Call the test case function inside the loop

    • Track the results of each iteration if needed

  • Answered by AI
  • Q2. WAP to get duplicate char count
  • Ans. 

    A program to count the number of duplicate characters in an array of strings.

    • Iterate through each string in the array

    • For each string, iterate through each character and count the occurrences

    • Store the count of each character in a map or dictionary

    • Return the characters with count greater than 1

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Questions on object oriented programming concepts in java
  • Q2. How to handle multiple windowns in selenium
  • Ans. 

    Handling multiple windows in Selenium involves switching between windows and performing actions on each window.

    • Use getWindowHandles() to get all window handles

    • Switch to a specific window using switchTo().window(handle)

    • Perform actions on the window

    • Switch back to the original window if needed

  • Answered by AI

Skills evaluated in this interview

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

They told to write java program in string and collections

Round 2 - One-on-one 

(2 Questions)

  • Q1. Different between test cases and test scenario
  • Ans. 

    Test cases are specific conditions or inputs to test a particular functionality, while test scenarios are a sequence of test cases to test a broader functionality.

    • Test cases are detailed steps to test a specific functionality, while test scenarios are a collection of test cases to test a broader functionality.

    • Test cases are more granular and focus on individual functionalities, while test scenarios are more high-level ...

  • Answered by AI
  • Q2. Write a program to read from excel
  • Ans. 

    A program to read data from an Excel file using a programming language.

    • Use a library or module that supports reading Excel files, such as pandas in Python or Apache POI in Java.

    • Open the Excel file and select the specific sheet or range of cells to read data from.

    • Iterate through the rows and columns to extract the data and store it in an array of strings.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why you want to switch company
  • Ans. 

    Seeking new challenges and growth opportunities in a more innovative environment.

    • Desire for new challenges and learning opportunities

    • Seeking a more innovative work environment

    • Looking for career growth and advancement

    • Interested in working with new technologies or methodologies

  • Answered by AI

Skills evaluated in this interview

SE - Mentor Interview FAQs

How many rounds are there in SE - Mentor QA Engineer interview?
SE - Mentor interview process usually has 2-3 rounds. The most common rounds in the SE - Mentor interview process are Technical, Resume Shortlist and HR.
What are the top questions asked in SE - Mentor QA Engineer interview?

Some of the top questions asked at the SE - Mentor QA Engineer interview -

  1. Difference between sanity and regression test...read more
  2. Different types of test...read more
  3. What is collect...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 SE - Mentor interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

QA Engineer Interview Questions from Similar Companies

TCS QA Engineer Interview Questions
3.7
 • 41 Interviews
IBM QA Engineer Interview Questions
4.1
 • 10 Interviews
View all
SE - Mentor QA Engineer Salary
based on 89 salaries
₹2 L/yr - ₹9.1 L/yr
6% less than the average QA Engineer Salary in India
View more details

SE - Mentor QA Engineer Reviews and Ratings

based on 13 reviews

3.6/5

Rating in categories

3.2

Skill development

3.6

Work-Life balance

3.1

Salary & Benefits

3.8

Job Security

3.7

Company culture

3.1

Promotions/Appraisal

3.6

Work Satisfaction

Explore 13 Reviews and Ratings
QA Engineer
89 salaries
unlock blur

₹2 L/yr - ₹9.1 L/yr

Senior QA Engineer
44 salaries
unlock blur

₹4.5 L/yr - ₹9.5 L/yr

Associate QA Engineer
24 salaries
unlock blur

₹2.4 L/yr - ₹5 L/yr

Softwaretest Engineer
15 salaries
unlock blur

₹1.2 L/yr - ₹6 L/yr

Senior Test Engineer
12 salaries
unlock blur

₹7 L/yr - ₹10 L/yr

Explore more salaries
Compare SE - Mentor with

BYJU'S

3.1
Compare

Unacademy

3.0
Compare

upGrad

3.8
Compare

Simplilearn

3.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview