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

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

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic js question closure, async defer and all
  • Q2. Create autosuggest debounce, pollyfill
  • Ans. 

    Autosuggest debounce is a feature that delays the search suggestions until the user stops typing, and a polyfill is a piece of code that provides functionality that is not natively supported by the browser.

    • Implement a debounce function to delay the autosuggest feature until the user stops typing.

    • Use a polyfill to provide support for the autosuggest feature in browsers that do not natively support it.

    • Example: Implement ...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. A programming question
  • Q2. React-native architecture and flatlist
  • Q3. Kadanes algorithm
  • Ans. 

    Kadane's algorithm is used to find the maximum subarray sum in an array of integers.

    • Iterate through the array and keep track of the maximum sum ending at each index.

    • At each index, choose between extending the previous subarray or starting a new subarray.

    • Example: For array [-2, 1, -3, 4, -1, 2, 1, -5, 4], the maximum subarray sum is 6 (from index 3 to 6).

  • Answered by AI
  • Q4. Scalablity, performance

Interview Preparation Tips

Interview preparation tips for other job seekers - Advance js topics and programming questions, scalablity and performance optimization

Skills evaluated in this interview

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)
Round 1 - One-on-one 

(2 Questions)

  • Q1. Internal Working Of Hashmap, Java 8 features and two DSA questions one was based on the array and the second one was based on LinkedList. The first interview round was very excellent that's why they conduc...
  • Q2. Detect loop in a LinkedList,
  • Ans. 

    Detect loop in a LinkedList

    • Use two pointers, one moving at twice the speed of the other

    • If there is a loop, the faster pointer will eventually catch up to the slower one

    • If there is no loop, the faster pointer will reach the end of the list

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

(2 Questions)

  • Q1. System Design HLD and LLD round which was the final round.
  • Q2. HLD and LLD Designing round: Desing Architecture for ChatBot and Company Employee Data Management System.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have Good Practice in DSA and System Desing, Basic and OOPS concept of any One Programming Language should be very clear

Skills evaluated in this interview

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)

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

It was Conducted on Hacker Earth, There were 2 coding questions and 20 mcq's. Both Coding questions were of medium level and also basic mcq's

Round 2 - One-on-one 

(1 Question)

  • Q1. 2 coding questions of link list were asked and one problem statement was given in which only approach was asked to be given as it was complex to implement during the limited time frame of 1 hour.
Round 3 - Technical 

(1 Question)

  • Q1. DBMS, OS in depth was asked and Some questions of Networking were also asked. For DBMS questions on Indexing, B ,B+ Trees, Normalization based on real life scenario's were asked and from OS all types of CP...

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your Data Structure and Algorithm Regularly and also focus on Technical Skills

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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Delhi College of Engineering (DCE), Delhi and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Smallest window in a string containing all the characters of another string.(GFG)
  • Ans. 

    Find the smallest window in a string containing all characters of another string.

    • Use a sliding window approach to find the smallest window

    • Create a frequency map of characters in the second string

    • Slide the window and update the frequency map until all characters are found

    • Track the minimum window size and indices

  • Answered by AI
  • Q2. Check whether linked list is Pallindrome or not
  • Ans. 

    To check if a linked list is a palindrome, compare the first half of the list with the reversed second half.

    • Traverse the linked list to find the middle element using slow and fast pointers.

    • Reverse the second half of the linked list.

    • Compare the first half with the reversed second half to check for palindrome.

  • Answered by AI
  • Q3. Deadlocks,4 conditions of Deadlocks and ways of preventing Deadlock
  • Ans. 

    Deadlocks occur when two or more processes are waiting for each other to release resources, leading to a standstill.

    • 4 conditions of Deadlocks: mutual exclusion, hold and wait, no preemption, circular wait

    • Preventing Deadlocks: using a proper resource allocation strategy, implementing timeouts, avoiding circular wait, using deadlock detection and recovery algorithms

    • Example: Two processes each holding a resource and waiti...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Algorithm to find if any 5 numbers add up to the value of the Sum
  • Ans. 

    Use a hash set to store seen numbers and check if the complement of current number is in the set.

    • Iterate through the array and for each number, check if the complement of the current number is in the hash set.

    • If the complement is found, return true. Otherwise, add the current number to the hash set.

    • Repeat this process for all numbers in the array.

    • Example: Array [1, 2, 3, 4, 5] and Sum 9 should return true as 4 + 5 = 9.

  • Answered by AI
  • Q2. What is DNS(Domain Name System)
  • Ans. 

    DNS is a system that translates domain names to IP addresses, allowing users to access websites using human-readable names.

    • DNS is like a phone book for the internet, translating domain names (e.g. google.com) to IP addresses (e.g. 172.217.3.206).

    • DNS servers store records that map domain names to IP addresses, helping users navigate the internet.

    • DNS also helps with email delivery by translating domain names in email add

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your Data Structures well,get a in depth understanding of your projects,go through your core subjects specially OOPs,OS and DBMS.

Skills evaluated in this interview

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)

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)

Holiday Expert Interview Questions & Answers

user image Shama Parveen

posted on 14 Sep 2023

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

I applied via You tube and was interviewed before Sep 2022. There were 2 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 

(2 Questions)

  • Q1. Introduction About yourself
  • Q2. Tell about previous Job

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be confident.
Polite
Good communication skills

Get interview-ready with Top MakeMyTrip Interview Questions

I applied via Referral and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Total 3 rounds Just be prepared with all your previous projects (college as well as previous companies) with good understanding of networking, OS and Web concepts. Apart from this, rest questions depends ...
Round 3 - One-on-one 

(1 Question)

  • Q1. As discussed in previous round...All rounds will be mostly similar, apart from last round with Director/VP as they may ask basic behavioural and situational questions as well.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive and confident. Never reveal your previous companies internal information to current company.

Security Engineer Interview Questions asked at other Companies

Q1. 1. What is Cryptography? Cryptography is the practice and study of techniques for securing information and communication mainly to protect the data from third parties that the data is not intended for. 2. What is the difference between Symm... read more
View answer (25)

HR Executive Interview Questions & Answers

user image Anonymous

posted on 25 Apr 2024

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Questions related to your overallwork experience, skill test, role fitment and your achievements till date
Round 2 - Technical 

(1 Question)

  • Q1. Specific skill set questions, aptitude and case study questions
Round 3 - HR 

(2 Questions)

  • Q1. Reason for job change
  • Q2. Family background

HR Executive Interview Questions asked at other Companies

Q1. What do you know about Labor Law
View answer (6)

I applied via campus placement at Indian Institute of Management (IIM), Lucknow

Round 1 - Case Study 

Tell me something about yourself.

Share your work experience.

Suppose you need to implement Uber Surge. How would you go about it?

Round 2 - One-on-one 

(7 Questions)

  • Q1. Why did you choose MBA?
  • Q2. What is your favorite website and why?
  • Q3. Do you know something about google ad-words?
  • Ans. 

    Yes, Google AdWords is an online advertising platform developed by Google.

    • Google AdWords allows businesses to create and display ads on Google's search engine results pages and other websites.

    • It works on a pay-per-click model, where advertisers bid on keywords and pay for each click on their ads.

    • AdWords also offers various targeting options, such as location, language, device, and audience demographics.

    • It has now been ...

  • Answered by AI
  • Q4. What is Google's revenue model?
  • Ans. 

    Google's revenue model is primarily based on advertising through its search engine and other platforms.

    • Google earns revenue through its AdWords program, where advertisers bid on keywords to display their ads in search results and other Google platforms.

    • Google also earns revenue through its AdSense program, where website owners can display Google ads on their sites and earn a share of the revenue.

    • Other sources of revenu...

  • Answered by AI
  • Q5. How is Uber pool beneficial?
  • Ans. 

    Uber pool is beneficial as it reduces traffic congestion, lowers transportation costs, and promotes social interaction.

    • Reduces traffic congestion by allowing multiple passengers to share a ride

    • Lowers transportation costs for passengers as they split the fare

    • Promotes social interaction by bringing people together who may not have otherwise met

    • Increases efficiency by reducing the number of cars on the road

    • Helps to reduce...

  • Answered by AI
  • Q6. When would Uber pool fail?
  • Ans. 

    Uber pool would fail if the demand for shared rides decreases or if the cost of providing the service becomes too high.

    • Decrease in demand for shared rides

    • Increase in cost of providing the service

    • Competition from other ride-sharing services

    • Regulatory changes affecting ride-sharing services

    • Safety concerns or incidents

    • Technological disruptions affecting the ride-sharing industry

  • Answered by AI
  • Q7. How would you get the work done from a team not in your jurisdiction?

Interview Preparation Tips

Interview preparation tips for other job seekers - • Go through job descriptions on the Portal
• Prepare CV thoroughly
• They are not looking for correct answers, they only see your approach to the solution, so try to be structured.
• Be very confident with the CV, was grilled on my 1st worked point for a good 7-10 mins.

Top MakeMyTrip Product Manager Interview Questions and Answers

Q1. 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 through the steps. You can use A/B Testing, experiment design to discu... read more
View answer (1)

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (26)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. About your personal details, about your perivious profession, reson of resign, ok with sales and work from home.
Round 2 - HR 

(1 Question)

  • Q1. Same as mentioned above

Interview Preparation Tips

Interview preparation tips for other job seekers - This is good opportunity if you love traveling and keen to know about Destination within india or outside india. Work from home..

Program Manager Interview Questions & Answers

user image Pranav Gupta

posted on 17 Jun 2024

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

I was interviewed before Jun 2023.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Program scenarios
  • Q2. Project management
  • Q3. Risk and people management

Program Manager Interview Questions asked at other Companies

Q1. Use case scenario - in case a new engagement is awarded to Infosys, share how do you manage that Project/Program?
View answer (9)

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