Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ixigo.com Team. If you also belong to the team, you can get access from here

Ixigo.com Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ixigo.com Software Engineer Interview Questions and Answers

Updated 12 Mar 2024

Ixigo.com Software Engineer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. To find the kth minimum element from BST
  • Ans. 

    To find the kth minimum element from a Binary Search Tree (BST)

    • Perform an in-order traversal of the BST to get elements in sorted order

    • Return the kth element from the sorted list

    • Time complexity: O(n) where n is the number of nodes in the BST

  • Answered by AI
  • Q2. Basic OOPs question like inheritance encapsulation
Round 2 - Technical 

(2 Questions)

  • Q1. In a BST two numbers are swapped find swapped nos.
  • Ans. 

    To find swapped numbers in a BST, perform inorder traversal and keep track of previous node.

    • Perform inorder traversal of the BST

    • Keep track of the previous node while traversing

    • If at any point, the current node's value is less than the previous node's value, those are the swapped numbers

  • Answered by AI
  • Q2. What you did in college projects
Round 3 - One-on-one 

(2 Questions)

  • Q1. Puzzles: find the fastest 3 horses in 25 horse race with a race and 5 horses can be run at a time
  • Q2. Weakness and strength. how a friend will describe you

Interview Preparation Tips

Topics to prepare for Ixigo.com Software Engineer interview:
  • java
  • dsa
  • puzzle
  • tree
Interview preparation tips for other job seekers - DSA and system design are needed

Skills evaluated in this interview

Interview questions from similar companies

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
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Delhi College of Engineering (DCE), Delhi 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

Interview Preparation Tips

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

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

DSA ROUND : DP question was asked

Round 2 - Technical 

(2 Questions)

  • Q1. MICROSERVICE VS MONOLITH
  • Ans. 

    Microservices are small, independent services that work together, while monolith is a single, large application.

    • Microservices are loosely coupled and can be developed, deployed, and scaled independently.

    • Monoliths are tightly coupled and any change requires redeployment of the entire application.

    • Microservices allow for better fault isolation and scalability.

    • Monoliths are simpler to develop and deploy initially.

    • Examples ...

  • Answered by AI
  • Q2. DATABASE SELECTION
Round 3 - Technical 

(1 Question)

  • Q1. Design Rate Limiter

Skills evaluated in this interview

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

I was interviewed in Jun 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Question on machine coding
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

One hour for date-time serialization.

Round 2 - Coding Test 

1 hour
pattern program

Interview Preparation Tips

Interview preparation tips for other job seekers - Get some knowledge on some framework and also some advance technologies too.
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
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Implement LRU Cache
  • Ans. 

    LRU Cache is a data structure that stores the most recently used items and discards the least recently used items when full.

    • Use a combination of a doubly linked list and a hashmap to implement LRU Cache.

    • Keep track of the most recently used item at the head of the linked list and the least recently used item at the tail.

    • When a new item is accessed, move it to the head of the linked list and update the hashmap.

    • When the c...

  • Answered by AI

Skills evaluated in this interview

I applied via Job Portal and was interviewed before May 2021. There were 5 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 - Coding Test 

2 Coding Questions (Hard Level) followed by 20 MCQ (CS Fundamentals)

Round 3 - Technical 

(2 Questions)

  • Q1. Given n starting with all 1 find the kth number example: n = 3, k= 4 1 1 1
  • Ans. 

    Given n starting with all 1, find the kth number.

    • The kth number is obtained by incrementing the binary representation of n.

    • Repeat until k-1 increments are done.

    • Return the final value of n.

  • Answered by AI
  • Q2. Question similar to level order traversal in binary tree
Round 4 - Technical 

(1 Question)

  • Q1. Reverse Linked List, Water Bucket Problem, Reverse Each word in a sentence
Round 5 - Technical 

(1 Question)

  • Q1. OOPs, Database, Networking

Interview Preparation Tips

Topics to prepare for MakeMyTrip Software Engineer interview:
  • Data Structures
  • Java
  • OOps
  • Database
Interview preparation tips for other job seekers - Well-prepared with Data Structures and have some knowledge of other subjects like Databases, OOPs, Networking etc.

I applied via Referral and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About oops

Interview Preparation Tips

Interview preparation tips for other job seekers - just know the basics

Ixigo.com Interview FAQs

How many rounds are there in Ixigo.com Software Engineer interview?
Ixigo.com interview process usually has 3 rounds. The most common rounds in the Ixigo.com interview process are Technical and One-on-one Round.
How to prepare for Ixigo.com Software Engineer 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 Ixigo.com. The most common topics and skills that interviewers at Ixigo.com expect are HTML, Javascript, Computer science, SEO and Wordpress.
What are the top questions asked in Ixigo.com Software Engineer interview?

Some of the top questions asked at the Ixigo.com Software Engineer interview -

  1. puzzles: find the fastest 3 horses in 25 horse race with a race and 5 horses ca...read more
  2. in a BST two numbers are swapped find swapped n...read more
  3. to find the kth minimum element from ...read more

Tell us how to improve this page.

Ixigo.com Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Ixigo.com Software Engineer Salary
based on 35 salaries
₹8 L/yr - ₹20 L/yr
54% more than the average Software Engineer Salary in India
View more details

Ixigo.com Software Engineer Reviews and Ratings

based on 4 reviews

2.6/5

Rating in categories

3.9

Skill development

1.9

Work-life balance

2.6

Salary

1.9

Job security

1.9

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 4 Reviews and Ratings
Software Engineer
35 salaries
unlock blur

₹8 L/yr - ₹20 L/yr

Software Developer
15 salaries
unlock blur

₹12 L/yr - ₹33 L/yr

Software Engineer2
13 salaries
unlock blur

₹15.3 L/yr - ₹21 L/yr

Product Manager
13 salaries
unlock blur

₹11 L/yr - ₹36 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹17.5 L/yr - ₹38 L/yr

Explore more salaries
Compare Ixigo.com with

MakeMyTrip

3.7
Compare

Yatra

3.4
Compare

Cleartrip

3.4
Compare

Goibibo

4.3
Compare
Did you find this page helpful?
Yes No
write
Share an Interview