MakeMyTrip Interview Experience | Set 8 (On-Campus) Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report MakeMyTrip recently visited our campus. There were 4 rounds. Online Round ( 1 Hour ) This round consisted of 20 aptitude questions and 3 coding Questions. Coding Questions: 1. Find ‘x’ in the equation. The input is in the form of a string. Equation consisted of addition operator only and 2 integers and a variable ‘x’. Sample Input Case: x+3=5 output=2 Decoding the string into 2 numbers and an unknown variable took a lot of time. 2. Given two numbers x and y find x^y in log y time. 3. Find the next palindromic number greater than the current number. Had solved all 3 questions and around 15 questions in aptitude. Was shortlisted for the next round. Technical Interview 1 ( 1 Hour 20 mins ) Firstly the interviewer asked me to introduce myself, asked me about my projects. Then he moved on to coding questions and puzzles and some basic object oriented fundamentals: All the questions below were in random order. 1. Questions related to collections, interfaces, JBM, JDE, Polymorphism and Abstraction. 2. Coding question : Full codes to be written a> Given an array comprising of only 1’s and 0’s , find the maximum length along with the starting indexand ending index which consisted equal number of 1’s and 0’s. I could not do it, the interviewer gave me another question: Given an array comprising of any number ( both positive and negative), find the maximum length alongwith starting and ending index which had sum equal to 0. I was able to do this one. The interviewer told me to solve the previous question now. I told him that replace all the 0’s with -1’s and the question becomes entirely the same. b> To Check whether a binary tree is a BST or not? 3. Puzzles: 1. There are 3 switches outside a room. Inside the room there is only 1 bulb. You could go inside the room only once, how will you know with which bulb the switch is associated with. 2. There are 100 coins in a table. 20 coins are heads and others are tails (facing upwards). Find the optimal cut(2 piles) such that both have equal number of heads facing up.Technical Interview 2 ( 1 hr ) Technical Interview 2 ( 1 hr ) Coding Questions: 1. Cloning Linked List with every node comprising of next and (random pointer to any other node). 2. Detect Loop in a Linked List and remove it. 3. In-place reversing of a string. Questions about abstract data type, abstract keyword, difference between C++ and Java, garbage collection in Java and OOPS concepts were asked. HR Round ( 20 mins ) Basic details, family background and why do you want to join this company? Where do you see yourself after 5 years and questions about weakness and strengths. All Practice Problems for MakeMyTrip ! Related Practice ProblemsPower of Numbers Comment More infoAdvertise with us Anonymous Improve Article Tags : Interview Experiences MakeMyTrip Modular Arithmetic Practice Tags : MakeMyTripModular Arithmetic Similar Reads MakeMyTrip Interview Experience | Set 7 (On-Campus) Recently makemytrip visited our Campus and I got selected in recruitment drive.The placement drive consisted of 4 rounds. Round1: MCQ and coding round It was an online test of 60 minutes consisting of 20 aptitude question and 3 coding question. Platform used for the test was of makemytrip and slight 5 min read MakeMyTrip Interview Experience | Set 2 (On-Campus) MakeMyTrip recently visited our campus. Below is my interview experience: Round 1: (Online MCQs) Section A- There were 20 Aptitude and Logical Reasoning questions which has to be done in 30 minutes. Section B- Basic C , C++ and Java questions. Moreover there were four coding questions for which you 2 min read MakeMyTrip Interview Experience | Set 10 (On-Campus) MakeMyTrip recently visited our campus. There were 5 rounds. Online Round ( 1 Hour ) This round consisted of 20 aptitude questions and 3 coding Questions. Coding Questions: 1. Next smallest palindrome 2. Given a number find the inverse of it such that (number * inverse)modulo 10^9+7=1 input 2 output 2 min read MakeMyTrip SDET Intern Interview Experience (On-Campus) Round 1(Online Test): The first round was an online test. It had a about 20 MCQs based on OOPs, DBMS SQL etc. Also, there was one coding question and one SQL Query. Coding Question: You are given an array representing a row of seats where seats[i] = 1 represents a person sitting in the ith seat, and 2 min read MakeMyTrip Interview Experience | Set 3 I recently got selected in Make my trip. Here is my interview experience. Round 1-(Online MCQs) There were 2 sections â Aptitude and Logical Reasoning and MCQ based on Java question, C++, coding for 20 min and 45 min respectively. Section A- Not very difficult to clear this round although less time 3 min read Make My Trip Interview Experience for SDE (On-Campus) It started with a very warm Introduction, where he appreciated my skills, and then he moved toward coding questions, he asked Search an element in a sorted and rotated Array, then he further moved to Topological sort in a graph, Some polymorphism-related questions and differences between real and vi 1 min read Like