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 Questions & Answers

user image Anonymous

posted on 5 Jun 2023

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

I applied via Referral and was interviewed before Jun 2022. There were 3 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 - Aptitude Test 

Reasoning & analytical skill check

Round 3 - Technical 

(2 Questions)

  • Q1. Final round they will ask about experience and skills set
  • Q2. What are you bringing on the table with all your experience and knowledge to grow company

Interview Questions & Answers

user image Alex Schaefer

posted on 13 Apr 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - HR 

(1 Question)

  • Q1. Basic screening questions asked
Round 2 - Behavioral 

(1 Question)

  • Q1. Specific career experience questions + non-career interests. Essentially you’re asked “who are you , why Expedia , why now , what’s next “
Round 3 - One-on-one 

(1 Question)

  • Q1. Short panel interviews with key internal stakeholders across departments

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared to communicate your career successes, growth, and long term goals. Interviewers ask broad questions to assess your professional style and potential for success at the company.

Always negotiate from the first offer. Know your worth!

- Happy Expedia 1.5yrs in and growing
Expedia Group Interview Questions and Answers for Freshers
illustration image

I applied via Recruitment Consultant and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Round 1(Big Data round): Basic Java Coding Questions, Basic spark Questions like Broadcast join, etc.
  • Q2. Round 2(Data Structure round): Basic Java Coding Questions like Find all the numbers whose sum equal to 5?, SQL Question based on Joins
  • Q3. Round 3(System Design): No Coding only discuss strategy few questions based on Map Reduce, SQL, Uber database design
  • Q4. Round 4(Behaviour): Basic Spark conceptual Questions, And Behaviour Question For Ex: What will you do if you are not able to complete the task before deadline? , Scrum and Agile.
  • Q5. Next day, I got a phone call from HR for expectations then after 2 hours they call me back and told me what they offer. After 5 days, I received offer.

Interview Preparation Tips

Interview preparation tips for other job seekers - When I got a call from Expedia for Data Engineer 2 role. I was sure I won't be able to clear the interview process because I don't have high-level skills in Data Structure. HR said They will consider overall performance not only 1 round.
The interview process took around 1 month and after HR round it took around 5 days to get an offer.
Advice:
1. Prepare well, Be confident. If you are not good in advance data structures like graphs etc it's okay. Just prepare well language-based questions based on java, python, spark anyone.
2. You should know about project deployment, production environment details.
3. Plus point if you are working in product-based company.
4. Discuss strategy with the interviewer before start writing a code. If they are not okay with your strategy give them 2-3 more. If they are still not ok then don't waste time, ask them to suggest some approach.
5. If the interviewer is asking questions from your weak area then give them few topics to ask questions.

Data Engineer 2 Interview Questions asked at other Companies

Q1. Design a datawarehouse for an e-commerce for buy and sell transaction.
View answer (1)
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 Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Sum of right leaf nodes, swap nodes in k groups
  • Ans. 

    The question involves finding the sum of right leaf nodes and swapping nodes in groups of k.

    • The sum of right leaf nodes can be found by traversing the tree and checking if a node is a right leaf node.

    • Swapping nodes in groups of k can be done by iterating through the linked list and swapping the nodes in each group.

    • Examples: For the sum of right leaf nodes, consider a binary tree with nodes 1, 2, 3, 4, 5. The sum would ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Combinatorics, find pivot in rotated array, standard hr questions

Skills evaluated in this interview

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)

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)

 Product Manager

 (2)

 Software Development Engineer

 (2)

Round 1 - One-on-one 

(2 Questions)

  • Q1. Be ready with all your previous experience on the tips
  • Q2. Situational based questionnaires, New ideas, Participation on projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with situational base questions, your past experience

Get interview-ready with Top Expedia Group Interview Questions

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

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Reverse nodes in k groups, sum of right leaf nodes
  • Ans. 

    The question involves reversing nodes in groups of k and finding the sum of right leaf nodes.

    • Implement a function to reverse nodes in groups of k

    • Traverse the reversed linked list and find the sum of right leaf nodes

    • Handle edge cases like when the number of nodes is not a multiple of k

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Combinatorics, find pivot in rotated sorted array, count sort
  • Ans. 

    The question involves finding the pivot in a rotated sorted array using combinatorics and count sort.

    • To find the pivot in a rotated sorted array, we can use a modified binary search algorithm.

    • First, we compare the middle element with the first element to determine if the pivot is in the left or right half.

    • Then, we continue dividing the array in half and adjusting the search range based on the pivot's location.

    • Count sor...

  • Answered by AI

Skills evaluated in this interview

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)

Jobs at Expedia Group

View all
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

Data and Algo test need to do live in front of interviewers.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare B-tree, staircase search, Java streaming AWS

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

I applied via Campus Placement and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Perosnality tets related questions in aptitude test

Round 2 - Assignment 

Questions on product management, mcqs and video round

Interview Preparation Tips

Interview preparation tips for other job seekers - Read up about products

Product Manager Intern Interview Questions asked at other Companies

Q1. How many flights take off everyday from the Paris airport
View answer (1)

SDE Intern Interview Questions & Answers

user image Anonymous

posted on 26 Jul 2024

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

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

Round 1 - Aptitude Test 

Moderate questions can be found on gfg

Round 2 - Coding Test 

4 graph question and one DP

Interview Preparation Tips

Interview preparation tips for other job seekers - Study hard easy

SDE Intern Interview Questions asked at other Companies

Q1. Given a string of containing lower case letters and upper case characters. Find the number of occurrences of each character. The question was further modified to include the special characters as well. I was asked to design the test cases f... read more
View answer (2)
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 was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. K8s, AWS, terraform, Jenkins

Infrastructure Engineer Interview Questions asked at other Companies

Q1. What type of ticketing tool was used in your previous organization?
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

SALARIES

Xceedance

DESIGNATION

INTERVIEWS

Elentec Power India (EPI) Pvt. Ltd.

No Interviews

SALARIES

Yantralive

DESIGNATION

LIST OF COMPANIES

Yantralive

Overview

LIST OF COMPANIES

Xceedance

Overview

SALARIES

Xceedance

SALARIES

Xceedance

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
 • 5k Interviews
Oyo Rooms Interview Questions
3.3
 • 218 Interviews
MakeMyTrip Interview Questions
3.7
 • 122 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
Cox & Kings Interview Questions
3.7
 • 6 Interviews
View all

Expedia Group Reviews and Ratings

based on 296 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 296 Reviews and Ratings
Director of Business Analytics

Bangalore / Bengaluru

15-20 Yrs

Not Disclosed

Software Development Engineer II

Gurgaon / Gurugram

2-4 Yrs

Not Disclosed

Software Development Engineer III

Gurgaon / Gurugram

5-9 Yrs

₹ 38-45 LPA

Explore more jobs
Software Development Engineer II
192 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
94 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer 3
73 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
66 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
56 salaries
unlock blur

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