Upload Button Icon Add office photos
Engaged Employer

i

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

MakeMyTrip Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 820 Reviews

Filter interviews by

MakeMyTrip Senior QA Engineer Interview Questions, Process, and Tips

Updated 24 Jul 2024

Top MakeMyTrip Senior QA Engineer Interview Questions and Answers

  • Q1. Combination Sum You are given an array/list ARR of N distinct positive integers. You are also given a non-negative integer B. Your task is to find all unique combinations ...read more
  • Q2. Next Greater Number You are given a string S which represents a number. You have to find the smallest number strictly greater than the given number which contains the sam ...read more
  • Q3. Program to find all possible combinations of elements from two sets of arrays such that the sum of elements is equal to one of the elements in the array itself.
View all 6 questions

MakeMyTrip Senior QA Engineer Interview Experiences

4 interviews found

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

(3 Questions)

  • Q1. Api status codes, api debugging questions
  • Q2. If you get 500 error how to debug.
  • Ans. 

    To debug a 500 error, check server logs, review code changes, test API endpoints, and use debugging tools.

    • Check server logs for error details

    • Review recent code changes that may have caused the error

    • Test API endpoints using tools like Postman

    • Use debugging tools like Chrome DevTools or Firebug

  • Answered by AI
  • Q3. One java string question merge two strings diagonally.
  • Ans. 

    Merge two strings diagonally in a Java array of strings.

    • Iterate through each row and column to merge characters diagonally

    • Keep track of the diagonal position to insert characters from both strings

    • Handle cases where strings have different lengths

    • Example: String 1: 'hello', String 2: 'world', Merged: 'hweolrllod'

    • Example: String 1: 'abc', String 2: '123', Merged: 'a1b2c3'

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Oct 2022. There were 6 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 - Initial Discussion 

(1 Question)

  • Q1. Basics on Automation
Round 3 - Coding Test 

2 programming question moderate level

Round 4 - Technical 

(1 Question)

  • Q1. Java Questions/ Selenium Question/ SQL
Round 5 - One-on-one 

(1 Question)

  • Q1. Managerial Round. Puzzle/ Basic program
Round 6 - HR 

(1 Question)

  • Q1. Salary Discussion, basic HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Go for it. Good Company to work with.

Senior QA Engineer Interview Questions Asked at Other Companies

asked in MakeMyTrip
Q1. Combination SumYou are given an array/list ARR of N distinct posi ... read more
asked in MakeMyTrip
Q2. Next Greater NumberYou are given a string S which represents a nu ... read more
Q3. How do you get data from a file in selenium
Q4. if 2 threads are given and one burns in 30 minutes, how you can c ... read more
Q5. How can you execute a test case number of times?

I was interviewed before Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a written test with 2 coding problems.

  • Q1. Combination Sum

    You are given an array/list ARR of N distinct positive integers. You are also given a non-negative integer B.

    Your task is to find all unique combinations in the array whose sum is equal ...

  • Ans. 

    This problem can be solved using recursion. 
    Steps : 
    1. Sort the array in increasing order.
    2. Next, remove all the duplicates from array.
    3. Now, use recursion and backtracking 
    (A) If at any time sub-problem sum == 0 then insert that array to the result. 
    (B) Else if sum < 0 then ignore and return.
    (C) Else insert the present index in that array to the current vector and call the function with sum = ...

  • Answered by CodingNinjas
  • Q2. Next Greater Number

    You are given a string S which represents a number. You have to find the smallest number strictly greater than the given number which contains the same set of digits as of the original ...

  • Ans. 

    Observations:
    1. If all digits are sorted in descending order, then output is always “Not Possible”. 
    2. If all digits are sorted in ascending order, then we need to swap last two digits. 
    3. For other cases, we need to process the number from rightmost side to find the smallest of all greater numbers. 

    Steps:
    1. Traverse the given number from rightmost digit, keep traversing till you find a digit which is sm...

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMakeMyTrip interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Program to find all possible combinations of elements from two sets of arrays such that the sum of elements is equal to one of the elements in the array itself.
  • Ans. 

    Program to find all possible combinations of elements from two sets of arrays such that the sum of elements is equal to one of the elements in the array itself.

    • Create two arrays of integers

    • Loop through both arrays and find all possible combinations

    • Check if the sum of elements is equal to any element in the array

    • Return all combinations that meet the criteria

  • Answered by AI
  • Q2. Program to find the next bigger number for the given number by just interchanging it's digits.ex- for 533224, answer is 533242
  • Ans. 

    Program to find the next bigger number for the given number by interchanging its digits.

    • Convert the number to a string to access individual digits

    • Start from the rightmost digit and find the first digit that is smaller than the digit to its right

    • Swap this digit with the smallest digit to its right that is greater than it

    • Sort the digits to the right of the swapped digit in ascending order

    • Convert the string back to a numb

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have been through 5 interview rounds in MakeMyTrip including one 1 written test followed by 4 face to face interview. Most of the questions asked were related to Java only. Many programs were asked to write algorithm for the given problem based on DS.

Be confident and prepare well on your DS and Algorithms concepts. Practice more on programming some basic problems.

Skills evaluated in this interview

MakeMyTrip interview questions for designations

 QA Engineer

 (2)

 QA Automation Engineer

 (1)

 QA Lead

 (1)

 Senior Software Engineer

 (10)

 Senior Software Engineer 2

 (3)

 Senior Sdet Engineer

 (1)

 Software Engineer

 (8)

 Security Engineer

 (1)

MakeMyTrip Interview FAQs

How many rounds are there in MakeMyTrip Senior QA Engineer interview?
MakeMyTrip interview process usually has 3-4 rounds. The most common rounds in the MakeMyTrip interview process are Technical, Coding Test and One-on-one Round.
What are the top questions asked in MakeMyTrip Senior QA Engineer interview?

Some of the top questions asked at the MakeMyTrip Senior QA Engineer interview -

  1. Program to find all possible combinations of elements from two sets of arrays s...read more
  2. Program to find the next bigger number for the given number by just interchangi...read more
  3. One java string question merge two strings diagonal...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 MakeMyTrip interviews
Job Portal
50%
50% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 4.9k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Swiggy Interview Questions
3.8
 • 423 Interviews
BigBasket Interview Questions
3.9
 • 345 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
JustDial Interview Questions
3.5
 • 326 Interviews
Meesho Interview Questions
3.7
 • 322 Interviews
CARS24 Interview Questions
3.6
 • 315 Interviews
Info Edge Interview Questions
4.0
 • 314 Interviews
View all
MakeMyTrip Senior QA Engineer Salary
based on 21 salaries
₹8.3 L/yr - ₹27 L/yr
47% more than the average Senior QA Engineer Salary in India
View more details

MakeMyTrip Senior QA Engineer Reviews and Ratings

based on 2 reviews

3.6/5

Rating in categories

3.6

Skill development

3.6

Work-Life balance

4.0

Salary & Benefits

3.4

Job Security

4.0

Company culture

3.0

Promotions/Appraisal

3.6

Work Satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
308 salaries
unlock blur

₹13.1 L/yr - ₹33 L/yr

Assistant Manager
284 salaries
unlock blur

₹4.8 L/yr - ₹18.8 L/yr

Senior Business Development Manager
228 salaries
unlock blur

₹4.5 L/yr - ₹12 L/yr

Holiday Expert
228 salaries
unlock blur

₹0.6 L/yr - ₹6.7 L/yr

Senior Executive
172 salaries
unlock blur

₹2 L/yr - ₹9.1 L/yr

Explore more salaries
Compare MakeMyTrip with

Cleartrip

3.4
Compare

Yatra

3.4
Compare

Goibibo

4.3
Compare

Oyo Rooms

3.3
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