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

Filter interviews by

MakeMyTrip Interview Questions and Answers

Updated 8 Jul 2025
Popular Designations

122 Interview questions

A Software Engineer was asked 1mo ago
Q. Simplify the expression (e.g., a + (b - c) - (f - d)). The output should be a + b - c - f + d.
Ans. 

Simplify mathematical expressions using stacks to manage signs effectively.

  • Use a stack to keep track of the current sign (+ or -).

  • Iterate through the expression character by character.

  • When encountering '(', push the current sign onto the stack.

  • When encountering ')', pop the sign from the stack.

  • Adjust the signs based on the current context (e.g., if a '-' is encountered).

  • Example: For 'a +(b-c)-(f-d)', the output sh...

View all Software Engineer interview questions
A Software Engineer was asked 1mo ago
Q. Given an array of numbers, find the length of the longest consecutive sequence. For example, given the array [-1, 0, 4, 5, 8, 10, 6], the longest consecutive sequence is [4, 5, 6], so the result should be 3...
Ans. 

Find the length of the longest consecutive sequence in an array using a HashSet.

  • Use a HashSet to store unique elements for O(1) lookups.

  • Iterate through each number in the array.

  • For each number, check if it's the start of a sequence (i.e., number - 1 is not in the set).

  • Count consecutive numbers by checking if the next number exists in the set.

  • Example: For [-1, 0, 4, 5, 8, 10, 6], the longest sequence is 4, 5, 6 wit...

View all Software Engineer interview questions
A Senior Business Development Manager was asked 3mo ago
Q. Describe a situation where you increased sales for a hotel.
Ans. 

Implement targeted marketing strategies and enhance guest experiences to boost hotel sales.

  • Leverage social media advertising to reach potential guests, showcasing unique hotel features.

  • Partner with local businesses for package deals, such as dining or tours, to attract more visitors.

  • Enhance customer loyalty programs to encourage repeat bookings and referrals.

  • Utilize online travel agencies (OTAs) effectively to inc...

View all Senior Business Development Manager interview questions
A Senior Software Engineer was asked 4mo ago
Q. Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0. Notice that the solution set must not contain dup...
Ans. 

The ThreeSum problem involves finding unique triplets in an array that sum to zero.

  • Sort the array to simplify finding triplets.

  • Use a loop to fix one element and apply two-pointer technique for the rest.

  • Skip duplicates to ensure unique triplets.

  • Example: For array [-1, 0, 1, 2, -1, -4], the triplets are [-1, -1, 2], [-1, 0, 1].

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 6mo ago
Q. Design the LLD for BookMyShow.
Ans. 

Design a low-level architecture for a ticket booking platform like BookMyShow.

  • User Management: Handle user registration, login, and profile management.

  • Event Management: Manage events, including creation, updates, and deletions.

  • Booking System: Implement a system for selecting seats, processing payments, and confirming bookings.

  • Notification Service: Send notifications via email/SMS for booking confirmations and remi...

View all Senior Software Engineer interview questions
A Software Developer was asked 6mo ago
Q. Given an integer array of size n, find the maximum circular subarray sum. A circular array means that the end of the array connects back to the beginning. The solution should consider both the non-circular ...
Ans. 

Find the maximum circular subarray sum in an integer array.

  • Calculate the non-circular maximum subarray sum using Kadane's algorithm.

  • Calculate the circular maximum subarray sum by subtracting the minimum subarray sum from the total sum.

  • Compare the non-circular and circular maximum subarray sums to get the overall maximum sum.

View all Software Developer interview questions
A Software Developer was asked 6mo ago
Q. Design a minimum stack that supports the following operations: push, pop, top, and retrieving the minimum element in constant time.
Ans. 

Design a stack that supports push, pop, top, and retrieving minimum element in constant time.

  • Use two stacks - one to store the actual elements and another to store the minimum values encountered so far

  • When pushing an element, check if it is smaller than the current minimum and if so, push it to the minimum stack

  • When popping an element, check if it is the current minimum and if so, pop from the minimum stack as wel...

View all Software Developer interview questions
Are these interview questions helpful?
A Software Engineer III was asked 7mo ago
Q. Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining.
Ans. 

Train water trapping problem involves calculating the amount of water that can be trapped between blocks.

  • Calculate the maximum height of blocks on left and right of each block

  • Find the minimum of the two heights and subtract the height of the current block to get trapped water

  • Sum up the trapped water for all blocks to get total trapped water

View all Software Engineer III interview questions
A Product Manager Intern was asked 8mo ago
Q. What is your favorite app and what is your critique of it?
Ans. 

My favorite app is Instagram, but I believe it can improve its algorithm for showing posts.

  • Instagram's algorithm sometimes shows posts out of order, leading to missed content

  • The explore page could be more personalized based on user interests

  • There are concerns about the impact of the app on mental health due to the focus on likes and followers

View all Product Manager Intern interview questions
A Senior Software Engineer 2 was asked 9mo ago
Q. Given a sorted rotated array, find an element in it.
Ans. 

Search for an element in a sorted rotated array

  • Use binary search to find the pivot point where the array is rotated

  • Then perform binary search on the appropriate half of the array to find the element

  • Handle cases where the element is not found in the array

View all Senior Software Engineer 2 interview questions

MakeMyTrip Interview Experiences

131 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. What is the algorithm for detecting a cycle in a Linked List using the slow and fast pointer technique?
  • Q2. In the design round, questions were asked regarding the design of Swiggy?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Design a minimum stack that supports the following operations: push, pop, top, and retrieving the minimum element in constant time.
  • Ans. 

    Design a stack that supports push, pop, top, and retrieving minimum element in constant time.

    • Use two stacks - one to store the actual elements and another to store the minimum values encountered so far

    • When pushing an element, check if it is smaller than the current minimum and if so, push it to the minimum stack

    • When popping an element, check if it is the current minimum and if so, pop from the minimum stack as well

    • Top ...

  • Answered by AI
  • Q2. Given an integer array of size n, find the maximum circular subarray sum. A circular array means that the end of the array connects back to the beginning. The solution should consider both the non-circular...
  • Ans. 

    Find the maximum circular subarray sum in an integer array.

    • Calculate the non-circular maximum subarray sum using Kadane's algorithm.

    • Calculate the circular maximum subarray sum by subtracting the minimum subarray sum from the total sum.

    • Compare the non-circular and circular maximum subarray sums to get the overall maximum sum.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for MakeMyTrip Software Developer interview:
  • stack
  • kadane's algorithm
Interview preparation tips for other job seekers - A solid approach to preparing for data structures and algorithms (DSA) is to use LeetCode as a primary resource.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Aptitude question were asked.

Round 2 - Group Discussion 

Great gd on Remote work vs Traditional work

Round 3 - One-on-one 

(2 Questions)

  • Q1. Telling me About yourself.
  • Ans. 

    I am a recent graduate with a degree in Business Administration and a passion for leadership and problem-solving.

    • Graduated with a degree in Business Administration

    • Passionate about leadership and problem-solving

    • Completed internships in marketing and finance

    • Led a team project to increase sales by 20%

  • Answered by AI
  • Q2. Why shouldn't we hire you
  • Ans. 

    I am confident in my abilities and believe I can bring valuable skills to the team.

    • I have a strong work ethic and am dedicated to achieving success.

    • I am a quick learner and adapt well to new environments.

    • I have relevant experience and skills that align with the requirements of the role.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Great knowledge about the company and confidence
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. LLD of bookmyshow
  • Ans. 

    Design a low-level architecture for a ticket booking platform like BookMyShow.

    • User Management: Handle user registration, login, and profile management.

    • Event Management: Manage events, including creation, updates, and deletions.

    • Booking System: Implement a system for selecting seats, processing payments, and confirming bookings.

    • Notification Service: Send notifications via email/SMS for booking confirmations and reminders...

  • Answered by AI
  • Q2. Concurrency Handling
  • Q3. Race conditions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good LLD and HLD knowledge
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Coding ques - Simplify the expression eg -> a +(b-c)-(f-d) , Output should be a+b-c-f+d (Hint use Stacks for storing only signs)
  • Ans. 

    Simplify mathematical expressions using stacks to manage signs effectively.

    • Use a stack to keep track of the current sign (+ or -).

    • Iterate through the expression character by character.

    • When encountering '(', push the current sign onto the stack.

    • When encountering ')', pop the sign from the stack.

    • Adjust the signs based on the current context (e.g., if a '-' is encountered).

    • Example: For 'a +(b-c)-(f-d)', the output should ...

  • Answered by AI
  • Q2. Coding ques - Find the longest consecutive numbers length in the array. [-1,0,4,5,8,10,6] Output should be 3 as the longest length is 4, 5, 6 so the length turns out to be 3 (Hint use HashSet)
  • Ans. 

    Find the length of the longest consecutive sequence in an array using a HashSet.

    • Use a HashSet to store unique elements for O(1) lookups.

    • Iterate through each number in the array.

    • For each number, check if it's the start of a sequence (i.e., number - 1 is not in the set).

    • Count consecutive numbers by checking if the next number exists in the set.

    • Example: For [-1, 0, 4, 5, 8, 10, 6], the longest sequence is 4, 5, 6 with len...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Explain current projects ?
  • Q2. Train water trapping problem
  • Ans. 

    Train water trapping problem involves calculating the amount of water that can be trapped between blocks.

    • Calculate the maximum height of blocks on left and right of each block

    • Find the minimum of the two heights and subtract the height of the current block to get trapped water

    • Sum up the trapped water for all blocks to get total trapped water

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good coding and technical expertise is needed
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Reverse stack which using another stack (Recursion)
  • Ans. 

    Reverse a stack using another stack and recursion to achieve the desired order of elements.

    • Use a temporary stack to hold elements while reversing.

    • Pop elements from the original stack and push them onto the temporary stack.

    • Once the original stack is empty, pop from the temporary stack to restore the order.

    • Recursion can be used to pop all elements and then push them back in reverse order.

  • Answered by AI
  • Q2. Find element in sorted rotated array
  • Ans. 

    Search for an element in a sorted rotated array

    • Use binary search to find the pivot point where the array is rotated

    • Then perform binary search on the appropriate half of the array to find the element

    • Handle cases where the element is not found in the array

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. LLD for twitter
  • Ans. 

    Design a low-level architecture for a Twitter-like social media platform.

    • User Management: Handle user registration, authentication, and profiles.

    • Tweet Management: Allow users to create, read, update, and delete tweets.

    • Feed Generation: Implement algorithms to generate a personalized feed for users.

    • Follow System: Enable users to follow/unfollow others and manage relationships.

    • Notifications: Provide real-time notification...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. HLD for poker game
  • Ans. 

    Design a high-level architecture for a multiplayer poker game application.

    • User Authentication: Players can create accounts and log in securely.

    • Game Lobby: A centralized area where players can join or create poker tables.

    • Game Logic: Implement rules for poker variants (e.g., Texas Hold'em, Omaha).

    • Real-time Communication: Use WebSockets for real-time updates between players.

    • Database: Store user profiles, game history, and...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Standard LeetCode Hard Question. But interviewer did not give the required image to understand what exactly was required. He himself was confused.
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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 hr of test on code earth platform

Round 2 - One-on-one 

(2 Questions)

  • Q1. LPS array in string
  • Ans. 

    LPS array in string refers to the Longest Palindromic Substring array in a given string.

    • Create an array to store all the palindromic substrings found in the given string.

    • Iterate through the string and check for palindromic substrings of different lengths.

    • Store the longest palindromic substrings in the array.

  • Answered by AI
  • Q2. DP on grid problem
  • Ans. 

    Dynamic Programming on grid problems involves optimizing paths or values in a 2D matrix using overlapping subproblems.

    • Define the grid dimensions (m x n) and initialize a DP table.

    • Base case: Set DP[0][0] = grid[0][0] for starting point.

    • Fill the first row and first column by accumulating values.

    • Use the relation DP[i][j] = grid[i][j] + min(DP[i-1][j], DP[i][j-1]) for other cells.

    • Example: For a grid with values, calculate ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - all the best do dsa

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about MakeMyTrip?
Ask anonymously on communities.

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. Given two classes C1 and C2 which are almost same.(remember not exactly same). ...read more
  3. In a normal e-commerce user flow, how will you determine the points at which t...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.

Overall Interview Experience Rating

3.9/5

based on 106 interview experiences

Difficulty level

Easy 11%
Moderate 85%
Hard 3%

Duration

Less than 2 weeks 76%
2-4 weeks 19%
4-6 weeks 5%
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.4k Interviews
Flipkart Interview Questions
3.9
 • 1.5k Interviews
Swiggy Interview Questions
3.8
 • 473 Interviews
PolicyBazaar Interview Questions
3.7
 • 472 Interviews
Meesho Interview Questions
3.7
 • 368 Interviews
JustDial Interview Questions
3.5
 • 358 Interviews
Info Edge Interview Questions
3.9
 • 349 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Eternal Limited Interview Questions
3.7
 • 327 Interviews
View all

MakeMyTrip Reviews and Ratings

based on 931 reviews

3.6/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.3

Salary

3.7

Job security

3.5

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 931 Reviews and Ratings
Senior Software Engineer
339 salaries
unlock blur

₹19 L/yr - ₹33 L/yr

Assistant Manager
273 salaries
unlock blur

₹9 L/yr - ₹16.1 L/yr

Software Engineer
242 salaries
unlock blur

₹13 L/yr - ₹23 L/yr

Holiday Expert
229 salaries
unlock blur

₹2 L/yr - ₹6.2 L/yr

Senior Business Development Manager
224 salaries
unlock blur

₹5.4 L/yr - ₹12 L/yr

Explore more salaries
Compare MakeMyTrip with

Cleartrip

3.5
Compare

Amazon

4.0
Compare

Flipkart

3.9
Compare

Indiamart Intermesh

3.6
Compare
write
Share an Interview