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, Process, and Tips

Updated 26 Feb 2025

Top MakeMyTrip Interview Questions and Answers

  • Q1. Minimum Jumps Problem Statement Bob and his wife are in the famous 'Arcade' mall in the city of Berland. This mall has a unique way of moving between shops using trampol ...read more
    asked in Software Developer interview
  • Q2. Tower of Hanoi Problem Statement You have three rods numbered from 1 to 3, and 'N' disks initially stacked on the first rod in increasing order of their sizes (largest d ...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

122 interviews found

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)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 27 May 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Architecture of Automation and java basics
Round 2 - Coding Test 

Real time problems and solutioning

Round 3 - Aptitude Test 

Logical and basics of web and API. fittment

Interview Preparation Tips

Interview preparation tips for other job seekers - strong concepts in JAVA

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)
MakeMyTrip Interview Questions and Answers for Freshers
illustration image

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

The test was in the morning at around 11.
It was on online assessment.
HackerEarth was perfect like everytime.\
MCQ were based on HTML ,CSS , JS, OOPS, SQL, Aptitude, OS.

  • Q1. 

    Reach the Destination Problem Statement

    You are given a source point (sx, sy) and a destination point (dx, dy). Determine if it is possible to reach the destination point using only the following valid mo...

  • Ans. 

    The problem involves determining if it is possible to reach a destination point from a source point using specified moves.

    • Iterate through each test case and check if destination is reachable from source using specified moves

    • Implement a recursive function to explore all possible paths from source to destination

    • Keep track of visited points to avoid infinite loops

    • Return true if destination is reachable, false otherwise

  • Answered by AI
  • Q2. 

    Delete Node in Binary Search Tree Problem Statement

    You are provided with a Binary Search Tree (BST) containing 'N' nodes with integer data. Your task is to remove a given node from this BST.

    A BST is a ...

  • Ans. 

    Implement a function to delete a node from a Binary Search Tree and return the inorder traversal of the modified BST.

    • Understand the properties of a Binary Search Tree (BST) - left subtree contains nodes with data less than the node, right subtree contains nodes with data greater than the node.

    • Implement a function to delete the given node from the BST while maintaining the BST properties.

    • Perform inorder traversal of the...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Hard

The interviewer was very friendly. He gave me problems one by one and asked me to write code for all of them in Code Pair round. Explain Scope and Scope Chain in javascript. What is a Stored Procedure in SQL?

  • Q1. 

    Shortest Path in a Binary Matrix Problem Statement

    Given a binary matrix of size N * M where each element is either 0 or 1, find the shortest path from a source cell to a destination cell, consisting only...

  • Ans. 

    Find the shortest path in a binary matrix from a source cell to a destination cell consisting only of 1s.

    • Use Breadth First Search (BFS) algorithm to find the shortest path.

    • Keep track of visited cells to avoid revisiting them.

    • Calculate the path length by counting the number of 1s in the path.

    • Handle edge cases such as invalid inputs and unreachable destination.

  • Answered by AI
  • Q2. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Given an array of integers and a target sum, find all pairs of elements that add up to the target sum.

    • Use a hashmap to store the difference between the target sum and each element as keys and their indices as values.

    • Iterate through the array and check if the current element's complement exists in the hashmap.

    • Return the pairs of elements that add up to the target sum in sorted order.

  • Answered by AI
  • Q3. 

    Validate Binary Search Tree (BST)

    You are given a binary tree with 'N' integer nodes. Your task is to determine whether this binary tree is a Binary Search Tree (BST).

    BST Definition:

    A Binary Search Tr...

  • Ans. 

    Validate if a given binary tree is a Binary Search Tree (BST) or not.

    • Check if the left subtree of a node contains only nodes with data less than the node's data.

    • Check if the right subtree of a node contains only nodes with data greater than the node's data.

    • Ensure that both the left and right subtrees are also binary search trees.

    • Traverse the tree in an inorder manner and check if the elements are in sorted order.

    • Recurs...

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

The round was with CTO level person. He was very friendly. What is the difference between SQL and MySQL? What are Constraints in SQL?

  • Q1. 

    Longest Duplicate Substring Problem Statement

    You are provided with a string 'S'. The task is to determine the length of the longest duplicate substring within this string. Note that duplicate substrings ...

  • Ans. 

    Find the length of the longest duplicate substring in a given string.

    • Iterate through all possible substrings of the input string.

    • Use a rolling hash function to efficiently compare substrings.

    • Store the lengths of duplicate substrings and return the maximum length.

  • Answered by AI
  • Q2. 

    Maximum Sum of Products for Array Rotations

    You are given an array ARR consisting of N elements. Your task is to determine the maximum value of the summation of i * ARR[i] among all possible rotations of ...

  • Ans. 

    Find the maximum sum of products for array rotations.

    • Iterate through all possible rotations of the array and calculate the sum of products for each rotation.

    • Keep track of the maximum sum of products found so far.

    • Return the maximum sum of products obtained.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Fullstack Developer in BangaloreEligibility criteria7 CGPAMakeMyTrip interview preparation:Topics to prepare for the interview - Data Structures, OOPS, OS, DBMS, Computer NetworkingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : DSA should be very very good.
Tip 2 : Computer Science Fundamentals are very important
Tip 3 : Think out loud in an interview

Application resume tips for other job seekers

Tip 1 : At least 2 very well prepared projects
Tip 2 : Internship experiences always help

Final outcome of the interviewSelected

Skills evaluated in this interview

Top MakeMyTrip Full Stack Developer Interview Questions and Answers

Q1. Tower of Hanoi Problem Statement You have three rods numbered from 1 to 3, and 'N' disks initially stacked on the first rod in increasing order of their sizes (largest disk at the bottom). Your task is to move the 'N' disks to another rod (... read more
View answer (1)

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Case Study 

Design a refrigerator for a Blind person.

Round 2 - One-on-one 

(1 Question)

  • Q1. How will you increase the revenue of Netflix by 10x.
  • Ans. 

    To increase Netflix's revenue by 10x, we can focus on expanding the subscriber base, increasing subscription prices, and diversifying revenue streams.

    • Expand the subscriber base by targeting new markets and demographics

    • Increase subscription prices for premium features or exclusive content

    • Diversify revenue streams through partnerships, merchandise sales, or live events

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read product management basics and prepare well for product management cases.
Structure the thoughts, and do not think of the final solution.

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)

MakeMyTrip interview questions for popular designations

 Software Developer

 (13)

 Senior Software Engineer

 (10)

 Software Engineer

 (8)

 Product Manager

 (5)

 Holiday Expert

 (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
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 Resume 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.

Top MakeMyTrip Senior QA Engineer Interview Questions and Answers

Q1. Combination Sum Problem Statement Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be chosen multiple times from ARR. Ensur... read more
View answer (1)

Senior QA Engineer Interview Questions asked at other Companies

Q1. Combination Sum Problem Statement Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be chosen multiple times from ARR. Ensur... read more
View answer (1)

Get interview-ready with Top MakeMyTrip Interview Questions

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

I applied via Campus Placement and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Case Study 

Asked product improvement questions for Flights funnel like how would reduce the steps the user takes to filter a flight, general case study questions like how many Air India flights fly on a Delhi Mumbai route.

Round 2 - Case Study 

Explain the best product feature that you have built till date and explain the quantitative rationale behind it.

Round 3 - HR 

(1 Question)

  • Q1. Questions on integrity, hobbies and ethical dilemma questions

Associate Product Manager Interview Questions asked at other Companies

Q1. 2. You have water filled Jar X and empty Jar Y. You transferred a portion of water from Jar X to Y using spunch which absorbs A% of water and it pours B% of water in Jar B. After one iteration, Z ml of water is present in Jar Y find water i... read more
View answer (2)
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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. What keyskills you have so we will select you.
  • Ans. 

    I have excellent communication skills, strong leadership abilities, and extensive experience in the travel industry.

    • Strong communication skills, both verbal and written

    • Leadership abilities and experience managing teams

    • Extensive knowledge and experience in the travel industry

    • Ability to analyze data and make informed decisions

    • Excellent customer service skills

    • Proficiency in relevant software and technology

    • Flexibility and ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and reply always in a proper manner and if u don't know the answer so politely say no but don't give missillenious answer

Senior Travel Executive Interview Questions asked at other Companies

Q1. What keyskills you have so we will select you.
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Need Good DSA understanding

Round 2 - Coding Test 

Need good DSA Handson

Round 3 - One-on-one 

(2 Questions)

  • Q1. Machince Coding
  • Q2. Design of Split Wise
  • Ans. 

    Split Wise is a mobile app that helps friends and roommates split bills and expenses.

    • Allows users to create groups and add expenses

    • Calculates each user's share of the expenses

    • Provides options for settling debts within the group

    • Sends notifications for pending payments

    • Supports multiple currencies for international users

  • Answered by AI

Skills evaluated in this interview

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked List Problem You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list. Your task is to determine the data of the node at which they sta... read more
View answer (1)

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

2 Coding Questions and 20 MCQ's to be solved in 90 minutes. It was from 6 pm. The camera and screen-recorders were on. The mcq was on web, oops, dbms.

  • Q1. 

    Number of Islands II Problem Statement

    You have a 2D grid of dimensions 'N' rows by 'M' columns, initially filled with water. You are given 'Q' queries, where each query contains two integers 'X' and 'Y'....

  • Ans. 

    The task is to determine the number of islands present on a 2D grid after each query of converting water to land.

    • Create a function that takes the grid dimensions, number of queries, and query coordinates as input.

    • For each query, convert the water at the given coordinates to land and then count the number of islands on the grid.

    • Use depth-first search (DFS) or breadth-first search (BFS) to identify connected land cells f...

  • Answered by AI
  • Q2. 

    Make Array Elements Equal Problem Statement

    Given an integer array, your objective is to change all elements to the same value, minimizing the cost. The cost of changing an element from x to y is defined ...

  • Ans. 

    Find the minimum cost to make all elements of an array equal by changing them to the same value.

    • Calculate the median of the array and find the sum of absolute differences between each element and the median.

    • Sort the array and find the median element, then calculate the sum of absolute differences between each element and the median.

    • If the array has an even number of elements, consider the average of the two middle elem

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 70 minutes
Round difficulty - Medium

The interview started with the interviewer asking me about my projects and why and what I have used in them. Be very clear with all the technologies you have used in your project as the interviewer will ask you in-depth about it.
Explain Components, Modules and Services in Angular. What is a Recursive Stored Procedure?

  • Q1. 

    Sub Sort Problem Statement

    You are given an integer array ARR. Determine the length of the shortest contiguous subarray which, when sorted in ascending order, results in the entire array being sorted in a...

  • Ans. 

    Determine the length of the shortest contiguous subarray that needs to be sorted to make the entire array sorted in ascending order.

    • Iterate from left to right to find the first element out of order.

    • Iterate from right to left to find the last element out of order.

    • Calculate the length of the subarray between the two out of order elements.

  • Answered by AI
  • Q2. 

    Minimum Operations Problem Statement

    You are given an array 'ARR' of size 'N' consisting of positive integers. Your task is to determine the minimum number of operations required to make all elements in t...

  • Ans. 

    Minimum number of operations to make all elements in an array equal by performing addition, subtraction, multiplication, or division.

    • Iterate through the array to find the maximum and minimum elements.

    • Calculate the difference between the maximum and minimum elements.

    • The minimum number of operations needed is the difference between the maximum and minimum elements.

  • Answered by AI
  • Q3. 

    Tower of Hanoi Problem Statement

    You have three rods numbered from 1 to 3, and 'N' disks initially stacked on the first rod in increasing order of their sizes (largest disk at the bottom). Your task is to...

  • Ans. 

    Tower of Hanoi problem involves moving 'N' disks from one rod to another following specific rules in less than 2^N moves.

    • Implement a recursive function to move disks from one rod to another while following the rules.

    • Use the concept of recursion and backtracking to solve the Tower of Hanoi problem efficiently.

    • Maintain a count of moves and track the movement of disks in a 2-D array/list.

    • Ensure that larger disks are not p...

  • Answered by AI
  • Q4. Can you explain the concepts of multithreading and semaphore in operating systems?
  • Ans. 

    Multithreading allows multiple threads to run concurrently, while semaphores are used to control access to shared resources in a synchronized manner.

    • Multithreading involves running multiple threads within a single process, allowing for parallel execution of tasks.

    • Semaphores are used to control access to shared resources by allowing only a certain number of threads to access the resource at a time.

    • Semaphores can be bina...

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

The interviewer was VP of Engineering at MakeMyTrip with more than 10 years of experience. He asked about the 4 Pillars of OOPS and we had an in-depth discussion with real-life applications for each of them.

  • Q1. 

    Square Root with Decimal Precision Problem Statement

    You are provided with two integers, 'N' and 'D'. Your objective is to determine the square root of the number 'N' with a precision up to 'D' decimal pl...

  • Ans. 

    Implement a function to find the square root of a number with a given precision.

    • Create a function that takes 'N' and 'D' as input parameters

    • Use a mathematical algorithm like Newton's method to approximate the square root

    • Iterate until the precision condition is met

    • Return the square root with the required precision

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Vellore Institute of Technology. Eligibility criteria8.5 CGPAMakeMyTrip interview preparation:Topics to prepare for the interview - DSA, OOPS, OS, DBMS, Computer Networks, Dynamic Programming, GraphsTime required to prepare for the interview - 12 monthsInterview preparation tips for other job seekers

Tip 1 : Never lose hope. Just keep working.
Tip 2 : Solve at least 5 problems each day of medium level or 3 questions of hard level with complete understanding.
Tip 3 : Keep at least 3-4 projects in your resume.

Application resume tips for other job seekers

Tip 1 : Keep it 1 page.
Tip 2 : Revise it very well before the interview.
Tip 3 : Know your projects in-depth. They might also ask you to show a demo as it is a virtual interview. So, keep them ready before the interview.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top MakeMyTrip Full Stack Developer Interview Questions and Answers

Q1. Tower of Hanoi Problem Statement You have three rods numbered from 1 to 3, and 'N' disks initially stacked on the first rod in increasing order of their sizes (largest disk at the bottom). Your task is to move the 'N' disks to another rod (... read more
View answer (1)

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

There were two sections mcq's and coding. We were allowed to switch between sections and there was no specific time for any section. Around 350 students gave the test.

  • Q1. 

    Count Inversions Problem Statement

    Given an integer array ARR of size N, your task is to find the total number of inversions that exist in the array.

    An inversion is defined for a pair of integers in the...

  • Ans. 

    Count the total number of inversions in an integer array.

    • Iterate through the array and for each pair of elements, check if the inversion condition is met.

    • Use a nested loop to compare each pair of elements efficiently.

    • Keep a count of the inversions found and return the total count at the end.

  • Answered by AI
  • Q2. 

    Maximum Consecutive Ones Problem Statement

    Given a binary array 'ARR' of size 'N', your task is to determine the maximum length of a sequence consisting solely of 1’s that can be obtained by converting at...

  • Ans. 

    Find the maximum length of a sequence of 1's by converting at most K zeroes into ones in a binary array.

    • Iterate through the array and keep track of the current window of 1's and zeroes.

    • Use a sliding window approach to find the maximum length of the sequence.

    • Update the window by flipping zeroes to ones within the limit of K flips.

    • Return the maximum length of the sequence obtained.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

About 45 students were shortlisted for this round. My interview was at 10:15am. I was asked to introduce myself. 

  • Q1. 

    Maximum Distance Problem Statement

    Given an integer array 'A' of size N, your task is to find the maximum value of j - i, with the restriction that A[i] <= A[j], where 'i' and 'j' are indices of the ar...

  • Ans. 

    Find the maximum distance between two elements in an array where the element at the first index is less than or equal to the element at the second index.

    • Iterate through the array and keep track of the minimum element encountered so far along with its index.

    • Calculate the maximum distance by subtracting the current index from the index of the minimum element.

    • Update the maximum distance if a greater distance is found whil...

  • Answered by AI
  • Q2. 

    Determine the Left View of a Binary Tree

    You are given a binary tree of integers. Your task is to determine the left view of the binary tree. The left view consists of nodes that are visible when the tree...

  • Ans. 

    The task is to determine the left view of a binary tree, which consists of nodes visible when viewed from the left side.

    • Traverse the binary tree level by level from left to right, keeping track of the first node encountered at each level.

    • Use a queue to perform level order traversal and keep track of the level number for each node.

    • Store the first node encountered at each level in a result array to get the left view of t

  • Answered by AI
Round 3 - Video Call 

Round duration - 40 Minutes
Round difficulty - Easy

About 17 students cleared the first round. My second round was at 4:30pm. The interviewer was very humble. 

Round 4 - Telephonic Call 

Round duration - 20 Minutes
Round difficulty - Easy

This was HR round, 7 students were shortlisted for this round. I received the call after 6:30pm. 

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Fullstack Developer in GurgaonEligibility criteriaAbove 8.5 CGPA, No active or any previous semester backlog, Allowed branches - CS and ENCMakeMyTrip interview preparation:Topics to prepare for the interview - OOPS, Data Structures, DBMS, OS, CN, Machine Learning(Based on resume)Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : For on campus placements, focus more on core subjects rather than very good projects/internships.
Tip 2 : You must cover all important Data Structures and their important/fundamental questions at least twice. For advanced Data Structures like DP, graph, trees, you should have good practice before hand.
Tip 3 : Solve aptitude questions occasionally.

Application resume tips for other job seekers

Tip 1 : Don't put too much skills/projects if you are not confident about it, u need not have very rich resume during on campus placements
Tip 2 : it should be readable and authentic

Final outcome of the interviewSelected

Skills evaluated in this interview

Top MakeMyTrip Full Stack Developer Interview Questions and Answers

Q1. Tower of Hanoi Problem Statement You have three rods numbered from 1 to 3, and 'N' disks initially stacked on the first rod in increasing order of their sizes (largest disk at the bottom). Your task is to move the 'N' disks to another rod (... read more
View answer (1)

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

JOBS

Salesforce

No Jobs

JOBS

Salesforce

No Jobs

SALARIES

Salesforce

INTERVIEWS

Bumchum Finserve

No Interviews

REVIEWS

Analytics Quotient

No Reviews

REVIEWS

Analytics Quotient

No Reviews

REVIEWS

Sciative Solutions

No Reviews

INTERVIEWS

Iknack Solutions

No Interviews

REVIEWS

Analytics Quotient

No Reviews

Tell us how to improve this page.

MakeMyTrip Interview Process

based on 97 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

Oyo Rooms Interview Questions
3.3
 • 218 Interviews
BCD Travel Interview Questions
4.3
 • 111 Interviews
Expedia Group Interview Questions
3.8
 • 75 Interviews
Agoda Interview Questions
3.6
 • 62 Interviews
Thomas Cook Interview Questions
3.7
 • 44 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Airbnb Interview Questions
3.8
 • 23 Interviews
Cleartrip Interview Questions
3.4
 • 18 Interviews
Goibibo Interview Questions
4.3
 • 6 Interviews
trivago Interview Questions
4.2
 • 2 Interviews
View all

MakeMyTrip Reviews and Ratings

based on 863 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 863 Reviews and Ratings
Senior Software Engineer
322 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
268 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Holiday Expert
225 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Business Development Manager
220 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
210 salaries
unlock blur

₹0 L/yr - ₹0 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