Upload Button Icon Add office photos

Expedien eSolutions

Compare button icon Compare button icon Compare

Filter interviews by

Expedien eSolutions QA Engineer Interview Questions, Process, and Tips

Updated 3 Mar 2020

Expedien eSolutions QA Engineer Interview Experiences

1 interview found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 3 Mar 2020

I applied via Walk-in

Interview Questionnaire 

9 Questions

  • Q1. 1. What is bug life cycle
  • Ans. 

    Bug life cycle is the process of identifying, reporting, resolving, and verifying software defects.

    • Bug is identified by testers or users

    • Bug is reported to developers

    • Developers resolve the bug

    • Testers verify the fix

    • Bug is closed if verified or reopened if not fixed

  • Answered by AI
  • Q2. 2. What is test case format and write test case at lift and login page. Positive and negative.
  • Ans. 

    Test case format and examples for lift and login page

    • Test case format includes test case ID, description, preconditions, test steps, expected results, and actual results

    • Positive test case for lift page: ID-001, description-Verify if the lift goes up when the up button is pressed, preconditions-Lift is on the ground floor, test steps-Press the up button, expected results-Lift goes up, actual results-Lift goes up

    • Negative...

  • Answered by AI
  • Q3. 3. What are priority and severity. Explain level with example.
  • Ans. 

    Priority and severity are terms used in software testing to indicate the importance and impact of a defect.

    • Priority refers to the level of urgency in fixing a defect, based on its impact on the system and business goals.

    • Severity refers to the degree of impact a defect has on the system's functionality and user experience.

    • Priority and severity are often assigned numerical values or labels, such as high, medium, or low.

    • E...

  • Answered by AI
  • Q4. 4. What are SDLC and STLC.
  • Ans. 

    SDLC stands for Software Development Life Cycle and STLC stands for Software Testing Life Cycle.

    • SDLC is a process followed by developers to design, develop, test and deploy software.

    • STLC is a process followed by testers to plan, design, execute and report software testing.

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

    • STLC includes phases like test planning, test design, test exec...

  • Answered by AI
  • Q5. 5. Some about bug tracking tools like jira, bugzila etc.
  • Q6. 6. Retesting ,regression , smoke, sanity testing etc.
  • Q7. 7. Some thinking about pervious company work process.
  • Q8. 8. Basic query of database.
  • Q9. 9. Written test- basic questions manual testing, basic reasoning and basic work , time, distance and interest etc questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be positive

Skills evaluated in this interview

Interview questions from similar companies

I applied via Referral and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Selenium, Java, functional testing
Round 2 - HR 

(1 Question)

  • Q1. Salary, notice period

Interview Preparation Tips

Interview preparation tips for other job seekers - Good work life balance and learning new technologies

I applied via Walk-in and was interviewed before Jun 2021. 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 - Group Discussion 

Current Technologies

Round 3 - Aptitude Test 

Duration 1 hr, Coding,GK and English

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good knowledge in ths subject which you are applying for th post

I applied via Referral and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Why TCS?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear with the basics and you will be through
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Your Introduction
  • Q2. Technical and Project related questions
  • Q3. Your Framework related questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Real time test cases
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Oct 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 - One-on-one 

(3 Questions)

  • Q1. Remove duplicates in string
  • Ans. 

    Remove duplicates in a string array

    • Iterate through the array and use a Set to store unique strings

    • Convert the Set back to an array to get the final result

  • Answered by AI
  • Q2. Remove spaces in string
  • Ans. 

    Remove spaces in a string

    • Use string.replace() method with regex to replace spaces with empty string

    • Alternatively, loop through each character in the string and build a new string without spaces

    • Consider trimming the string first to remove leading and trailing spaces

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

    Testing is the process of evaluating a system or application to identify defects or errors.

    • Testing involves executing software to find bugs or issues.

    • It ensures that the software meets the specified requirements.

    • Types of testing include functional, performance, security, and regression testing.

    • Examples of testing tools include Selenium, JUnit, and Postman.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Strings remove duplicate and count
  • Ans. 

    Remove duplicate strings in an array and count occurrences of each string.

    • Iterate through the array and use a Set to remove duplicates.

    • Use a HashMap to count occurrences of each string.

    • Return the unique strings and their counts.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Discussed about salary

Interview Preparation Tips

Interview preparation tips for other job seekers - good

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

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

Interview Questionnaire 

1 Question

  • Q1. They ask very easy question to you.. you have to learn basic of all i listed here Python, DSA, Linux, Computer Network, DBMS

Interview Preparation Tips

Interview preparation tips for other job seekers - It's not too tough. Basics will help to clear interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Recently worked project and QA related questions
Round 2 - Technical 

(1 Question)

  • Q1. About sprint planning and scenario based questions

Expedien eSolutions Interview FAQs

What are the top questions asked in Expedien eSolutions QA Engineer interview?

Some of the top questions asked at the Expedien eSolutions QA Engineer interview -

  1. 2. What is test case format and write test case at lift and login page. Positiv...read more
  2. 3. What are priority and severity. Explain level with examp...read more
  3. 1. What is bug life cy...read more

Tell us how to improve this page.

Software Developer
94 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

AST Consultant
74 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Implementation Consultant
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Expedien eSolutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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