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 824 Reviews

Filter interviews by

MakeMyTrip Interview Questions, Process, and Tips

Updated 9 Jan 2025

Top MakeMyTrip Interview Questions and Answers

  • Q1. Minimum Jumps Bob lives with his wife in a city named Berland. Bob is a good husband, so he goes out with his wife every Friday to ‘Arcade’ mall. ‘Arcade’ is a very famou ...read more
    asked in Software Developer interview
  • Q2. Tower of Hanoi You are given three rods (numbered 1 to 3), and ‘N’ disks initially placed on the first rod, one on top of each other in increasing order of size ( the lar ...read more
    asked in Full Stack Developer interview
  • Q3. In a normal e-commerce user flow, how will you determine the points at which the drop-off rates are high and what to do about them? (Take any e-commerce website and walk ...read more
    asked in Product Manager interview
View all 114 questions

MakeMyTrip Interview Experiences

Popular Designations

121 interviews found

QA Lead Interview Questions & Answers

user image Anonymous

posted on 19 Nov 2024

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

I applied via Referral and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Questions related to API Response Codes
  • Q2. Programming Problem from leetcode
  • Q3. Selenium Framework questions

QA Lead Interview Questions asked at other Companies

Q1. 1. Explain Bid bond guarantee, Advance payment guarantee, Performance guarantee. 2. What are different SWIFT messages generated as part of Letter of Credit? 3. Difference between LC and Guarantee. 4. Difference between Import LC and Export ... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Merge intervals provided array of start and end Maximum product subaaray

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice top ds algo interview questions

Top MakeMyTrip Software Developer Interview Questions and Answers

Q1. Minimum JumpsBob lives with his wife in a city named Berland. Bob is a good husband, so he goes out with his wife every Friday to ‘Arcade’ mall. ‘Arcade’ is a very famous mall in Berland. It has a very unique transportation method between s... read more
View answer (5)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Product of array except self
  • Ans. 

    Calculate the product of all elements in an array except for the current element.

    • Iterate through the array and calculate the product of all elements except the current element.

    • Use two loops to calculate the product of elements before and after the current element.

    • Handle edge cases like 0s in the array to avoid division by zero errors.

  • Answered by AI
  • Q2. Closure, setTimeout

Skills evaluated in this interview

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Linked list, tree, queues

Round 2 - One-on-one 

(3 Questions)

  • Q1. Merge linked list
  • Q2. Minimum jump question
  • Q3. Coin switch problem
  • Ans. 

    Coin switch problem involves determining the minimum number of coin flips to make all coins face the same direction.

    • Start from one end and count the number of flips needed to make all coins face the same direction

    • Consider the edge cases where the first and last coins are different

    • Optimize by flipping only when necessary

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

MakeMyTrip interview questions for popular designations

 Software Developer

 (13)

 Senior Software Engineer

 (10)

 Software Engineer

 (8)

 Holiday Expert

 (5)

 Product Manager

 (5)

 Senior QA Engineer

 (4)

 Full Stack Developer

 (3)

 Senior Software Engineer 2

 (3)

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

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Javascript core concepts, output questions

Top MakeMyTrip Software Developer Interview Questions and Answers

Q1. Minimum JumpsBob lives with his wife in a city named Berland. Bob is a good husband, so he goes out with his wife every Friday to ‘Arcade’ mall. ‘Arcade’ is a very famous mall in Berland. It has a very unique transportation method between s... read more
View answer (5)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Get interview-ready with Top MakeMyTrip Interview Questions

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

It was a 1 hour test with two coding questions. The questions were somewhat modified versions of the following leetcode questions
1. 503. Next greater element - II
2. 75. Sort Colors

Golang Developer Interview Questions asked at other Companies

Q1. can we return difference data type and how ,what architeture you worked in your project,does go have oops concepts
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. What is Redux state management? What is event loop, call back queue and call stack? Difference between let, const, var output questions based on set timeout, this, scoping. Coding question - zigzag string ...
  • Ans. 

    Redux is a predictable state container for JavaScript apps. Event loop, call stack, and callback queue manage asynchronous operations. let, const, var differ in variable scoping and reassignment. setTimeout delays execution. 'this' refers to the current context. Scoping determines variable accessibility.

    • Redux is a state management tool for JavaScript apps, ensuring predictable state changes.

    • Event loop manages the execu...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on vanilla Js, React, DSA

Skills evaluated in this interview

React Native Developer Interview Questions asked at other Companies

Q1. 3. What is the use useEffect Hook in react native? and how you relate it with lifecycle method which is class components?
View answer (3)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Interviewer asked two coding question medium level

Round 2 - Technical 

(1 Question)

  • Q1. I were asked to design parking lot Basically focusing on class diagram and how candidate is thinking about entities and design pattern
Round 3 - Technical 

(1 Question)

  • Q1. This is also LLD round interviewer asked me to design book my show How freezing the seats work? In two cases if using sql or not using any database just using cache of application

Interview Preparation Tips

Topics to prepare for MakeMyTrip Senior Software Engineer interview:
  • System Design
  • DSA
  • LLD
  • HLD
Interview preparation tips for other job seekers - You should focus on system designing and also DSA
For system design learn basic concept from internet then try to use that concept in real life use cases like I used bla bla car once so I tried to design this app

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me About your self
  • Ans. 

    Experienced customer support executive with a strong background in resolving complex issues and providing exceptional service.

    • Over 5 years of experience in customer support roles

    • Skilled in handling escalated customer complaints and finding solutions

    • Proficient in using CRM systems and ticketing platforms

    • Excellent communication and problem-solving skills

    • Received multiple awards for outstanding customer service

  • Answered by AI
  • Q2. Tell me about your work experience
  • Ans. 

    I have over 5 years of experience in customer support roles, handling various customer inquiries and issues.

    • Managed customer support tickets through CRM system

    • Provided technical support for software products

    • Resolved customer complaints and issues in a timely manner

    • Trained new customer support representatives

    • Implemented customer satisfaction surveys to gather feedback

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

(2 Questions)

  • Q1. What do you about this project
  • Q2. Do you have any idea how is it working
  • Ans. 

    Understanding how the role functions and the responsibilities involved.

    • The role involves providing support to customers, addressing their queries and concerns.

    • Requires strong communication skills to effectively interact with customers.

    • Involves troubleshooting technical issues and providing solutions.

    • May require working in a team to ensure customer satisfaction.

    • Understanding company products/services to better assist cu...

  • Answered by AI
Round 3 - Group Discussion 

Discuss about job and all other parts

Senior Customer Support Executive Interview Questions asked at other Companies

Q1. Tell me a time when you have delivered exception experience to a customer?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Assignment 

Research paper_______'

Round 2 - Group Discussion 

Tourism Industry ___________

Interview Preparation Tips

Topics to prepare for MakeMyTrip Travel Executive interview:
  • Tourism Industry
Interview preparation tips for other job seekers - Best industry

Travel Executive Interview Questions asked at other Companies

Q1. How will you convince your customer to buy from you while he/she is getting better deal from other company?
View answer (1)

MakeMyTrip Interview FAQs

How many rounds are there in MakeMyTrip interview?
MakeMyTrip interview process usually has 2-3 rounds. The most common rounds in the MakeMyTrip interview process are Technical, One-on-one Round and Coding Test.
How to prepare for MakeMyTrip 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 MakeMyTrip. The most common topics and skills that interviewers at MakeMyTrip expect are Sales, B2B Sales, Key Account Management, Corporate Sales and SQL.
What are the top questions asked in MakeMyTrip interview?

Some of the top questions asked at the MakeMyTrip interview -

  1. find out the subset of an array of continuous positive numbers from a larger ar...read more
  2. In a normal e-commerce user flow, how will you determine the points at which t...read more
  3. Given an integer array of size n, find the maximum circular subarray sum. A cir...read more
How long is the MakeMyTrip interview process?

The duration of MakeMyTrip interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

MakeMyTrip Interview Process

based on 61 interviews in last 1 year

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Oyo Rooms Interview Questions
3.3
 • 226 Interviews
Expedia Group Interview Questions
3.9
 • 81 Interviews
Agoda Interview Questions
3.7
 • 61 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Airbnb Interview Questions
3.9
 • 22 Interviews
Cleartrip Interview Questions
3.4
 • 16 Interviews
Goibibo Interview Questions
4.3
 • 6 Interviews
trivago Interview Questions
4.2
 • 2 Interviews
View all

MakeMyTrip Reviews and Ratings

based on 824 reviews

3.7/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.4

Salary

3.7

Job security

3.5

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 824 Reviews and Ratings
Travel Consultant

New Delhi

0-5 Yrs

₹ 2-7 LPA

Business Development Executive - Travel & Tourism

Vijayawada

0-3 Yrs

₹ 1.2-2.4 LPA

Explore more jobs
Senior Software Engineer
315 salaries
unlock blur

₹13 L/yr - ₹33 L/yr

Assistant Manager
272 salaries
unlock blur

₹4.8 L/yr - ₹18.9 L/yr

Holiday Expert
229 salaries
unlock blur

₹0.6 L/yr - ₹6.7 L/yr

Senior Business Development Manager
219 salaries
unlock blur

₹4.5 L/yr - ₹12 L/yr

Deputy Manager
172 salaries
unlock blur

₹7 L/yr - ₹24.5 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
Did you find this page helpful?
Yes No
write
Share an Interview