Upload Button Icon Add office photos
Engaged Employer

i

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

Expedia Group Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Expedia Group Interview Questions, Process, and Tips

Updated 19 Jan 2025

Top Expedia Group Interview Questions and Answers

View all 69 questions

Expedia Group Interview Experiences

Popular Designations

75 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Coding Test 

Leetcode easy and medium dsa problems.

Round 2 - Technical 

(1 Question)

  • Q1. Leetcode easy and medium, some behavoural questions.
Round 3 - Technical 

(1 Question)

  • Q1. Leetcode medium dp problem, questions on past experience and projects. Two puzzles.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice leetcode DSA interview questions, be clear on your resume and projects.

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
Add answer
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Two sum leetcode question

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (183)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Nov 2023. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Medium level DSA
  • Q2. 2 Medium SQL questions
Round 2 - Technical 

(1 Question)

  • Q1. Spark programming & Big Data concepts
Round 3 - Technical 

(1 Question)

  • Q1. Data Pipeline design
Round 4 - Behavioral 

(2 Questions)

  • Q1. DE concepts, Previous Experience
  • Q2. Cultural and Team fitment

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jun 2023. 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 

(1 Question)

  • Q1. About my job responsibilities and what I hand in previous company

Administration Executive Interview Questions asked at other Companies

Q1. Given a scenario where a supplier is delaying the delivery of the agreed service or products, how would you draft an email to them?
View answer (3)

Expedia Group interview questions for popular designations

 Software Developer Intern

 (9)

 Software Developer

 (8)

 Senior Software Engineer

 (4)

 Software Development Engineer II

 (4)

 Software Engineer

 (3)

 Software Engineer III

 (3)

 Data Engineer

 (2)

 Data Engineer 2

 (2)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via campus placement at Delhi College of Engineering (DCE), Delhi

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 - Coding Test 

1.5 hours long, platform was hackerearth.

Round 3 - Technical 

(1 Question)

  • Q1. Reverse a Linked List
  • Ans. 

    Reverse a linked list by changing the pointers direction.

    • Start with three pointers: current, previous, and next.

    • Iterate through the linked list, updating the pointers to reverse the direction.

    • Update the head pointer to the last node to complete the reversal.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice medium level Leetcode questions regularly.

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)

Get interview-ready with Top Expedia Group Interview Questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Custom problem was given and asked to solve and discuss solution with the interviewer

Round 3 - Group Discussion 

Current project discussion with panel

Round 4 - HR 

(1 Question)

  • Q1. Behaviour questions

Top Expedia Group Software Developer Interview Questions and Answers

Q1. Problem Statement: Largest Subarray with Equal Number of 0s and 1s Given an array containing only 0s and 1s, determine the length of the longest contiguous subarray that has an equal number of 0s and 1s. Input: int Tfor each test case: int ... read more
Add answer

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (41)

Jobs at Expedia Group

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

I applied via Referral and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Hiring manager round
  • Q2. Questions on previous projects
Round 2 - One-on-one 

(2 Questions)

  • Q1. Longest subsequence with sum zero
  • Ans. 

    Find the longest subsequence in an array with sum zero.

    • Iterate through the array and keep track of the running sum.

    • Store the running sum in a hashmap along with the index.

    • If the same sum is encountered again, the subsequence between the two indices has a sum of zero.

  • Answered by AI
  • Q2. Find diameter of tree
  • Ans. 

    The diameter of a tree is the longest path between two leaf nodes in the tree.

    • Calculate the longest path between two leaf nodes in the tree

    • This can be done by finding the height of the left and right subtrees and adding them together

    • The diameter of the tree is the maximum of either the diameter of the left subtree, the diameter of the right subtree, or the sum of the heights of the left and right subtrees

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

(1 Question)

  • Q1. System design: Hotel booking system
  • Ans. 

    Design a hotel booking system for managing reservations and availability.

    • Use a database to store hotel information, room availability, and reservations.

    • Implement user authentication and authorization for booking.

    • Include a search feature for users to find available rooms based on their criteria.

    • Allow users to make reservations, modify or cancel them.

    • Send confirmation emails to users after successful bookings.

  • Answered by AI
Round 4 - Coding Test 

Divide one big integer by another

Skills evaluated in this interview

Top Expedia Group Senior Software Engineer Interview Questions and Answers

Q1. Given array of integer create subarray with sum = 0
View answer (1)

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)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Malviya National Institute of Technology (NIT), Jaipur and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Coding Test 

This round had first questions about behavior, team work and hr type mcq questions.
Then there were 10 computer science mcqs. Then two coding questions.

Round 2 - Technical 

(1 Question)

  • Q1. This was of 1 hour. He asked about 2-3 dsa questions and some hr questions in last part.
Round 3 - Technical 

(1 Question)

  • Q1. This was also a similar round like round 2. In this he asked 2 medium dsa questions and some hr questions at last.

Top Expedia Group Software Developer Intern Interview Questions and Answers

Q1. Count and Say Sequence Problem The 'Count and Say' sequence is a series of strings in which each consecutive term is generated by describing the previous term. The sequence begins with '1'. Your task is to determine the sequence after N ite... read more
Add answer

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (4)

I was interviewed in Jul 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 180 Minutes
Round difficulty - Medium

coding questions on DSA and MCQs on java 
timing : late night 
no camera

  • Q1. 

    Knight Probability in Chessboard

    Calculate the probability that a knight remains on an N x N chessboard after making K moves. Initially, the knight is placed at a given position on the board. It can move ...

Round 2 - Video Call 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

It was a DSA round.

  • Q1. 

    Binary Tree to Doubly Linked List

    Transform a given Binary Tree into a Doubly Linked List.

    Ensure that the nodes in the Doubly Linked List follow the Inorder Traversal of the Binary Tree.

    Input:

    The fi...
  • Q2. 

    Find Duplicates in an Array

    Given an array ARR of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.

    Return the duplicate elements in any orde...

Round 3 - Video Call 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

DSA Questions were asked.

  • Q1. 

    Remove Character from String Problem Statement

    Given a string str and a character 'X', develop a function to eliminate all instances of 'X' from str and return the resulting string.

    Input:

    The first lin...
  • Q2. 

    String Rearrangement Problem Statement

    You are given a string of lowercase characters. The objective is to rearrange (reorder) the string so that no two adjacent characters are identical.

    Return the rear...

Round 4 - HR 

Round duration - 50 Minutes
Round difficulty - Easy

It was a behavioural round.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteria7 CGPAExpedia Group interview preparation:Topics to prepare for the interview - Data structures and algorithms, oops, os, dbms, web, development(ruby and reactjs) , basic quant, every topic of DSA in depthTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : strong grasp on DSA and problem solving 
Tip 2 : follow leetcode (try to do as many medium questions as possible) 
Tip 3 : should focus on development also and internships

Application resume tips for other job seekers

Tip 1 : good projects and coding profiles like leetcode 
Tip 2 : some good internships also help

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Expedia Group Software Developer Interview Questions and Answers

Q1. Problem Statement: Largest Subarray with Equal Number of 0s and 1s Given an array containing only 0s and 1s, determine the length of the longest contiguous subarray that has an equal number of 0s and 1s. Input: int Tfor each test case: int ... read more
Add answer

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (41)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Zigzag level order traversal of tree
  • Ans. 

    Zigzag level order traversal of tree involves traversing the tree level by level in a zigzag pattern.

    • Use a queue to perform level order traversal of the tree

    • Alternate between left to right and right to left traversal for each level

    • Store the nodes at each level in separate arrays

  • Answered by AI
  • Q2. Implementation of a vector
  • Ans. 

    A vector is a dynamic array that can resize itself as needed.

    • A vector is typically implemented using a dynamically allocated array.

    • It provides constant time access to elements using index.

    • Vectors can grow in size by reallocating memory when needed.

    • Example: vector vec;

    • Example: vec.push_back(10);

Answered by AI

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)

Expedia Group Interview FAQs

How many rounds are there in Expedia Group interview?
Expedia Group interview process usually has 2-3 rounds. The most common rounds in the Expedia Group interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Expedia Group 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 Expedia Group. The most common topics and skills that interviewers at Expedia Group expect are Talent Acquisition, Career Development, Agile Coaching, SQL and Software Design.
What are the top questions asked in Expedia Group interview?

Some of the top questions asked at the Expedia Group interview -

  1. A number x is given, two operation are allowed. Decrement by 1 and multiply by ...read more
  2. Given array of integer create subarray with sum ...read more
  3. Combinatorics, find pivot in rotated sorted array, count s...read more
How long is the Expedia Group interview process?

The duration of Expedia Group interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Expedia Group Interview Process

based on 54 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
Oyo Rooms Interview Questions
3.3
 • 227 Interviews
MakeMyTrip Interview Questions
3.7
 • 121 Interviews
Thomas Cook Interview Questions
3.8
 • 44 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Airbnb Interview Questions
3.8
 • 22 Interviews
Cleartrip Interview Questions
3.4
 • 17 Interviews
Goibibo Interview Questions
4.3
 • 6 Interviews
Cox & Kings Interview Questions
3.7
 • 6 Interviews
View all

Expedia Group Reviews and Ratings

based on 297 reviews

3.8/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.9

Salary

3.3

Job security

3.8

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 297 Reviews and Ratings
Software Development Engineer II

Gurgaon / Gurugram

2-4 Yrs

Not Disclosed

Software Development Engineer III

Gurgaon / Gurugram

5-9 Yrs

₹ 38-45 LPA

Senior Software Development Engineer - Backend + AI/ML

Gurgaon / Gurugram

7-11 Yrs

₹ 38-120 LPA

Explore more jobs
Software Development Engineer II
192 salaries
unlock blur

₹15.6 L/yr - ₹40 L/yr

Software Development Engineer
94 salaries
unlock blur

₹12 L/yr - ₹36 L/yr

Software Development Engineer 3
73 salaries
unlock blur

₹27 L/yr - ₹55 L/yr

Software Developer
66 salaries
unlock blur

₹10 L/yr - ₹41.8 L/yr

Software Engineer
56 salaries
unlock blur

₹12 L/yr - ₹37 L/yr

Explore more salaries
Compare Expedia Group 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