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 and Answers

Updated 2 Jun 2025
Popular Designations

68 Interview questions

An Assistant Tour Executive was asked
Q. Any idea about visa
Ans. 

Visa is a document that allows a person to enter, stay or leave a country for a specified period.

  • Visa requirements vary depending on the country and purpose of travel

  • Tourists usually require a tourist visa, while business travelers require a business visa

  • Some countries offer visa on arrival or e-visa facilities

  • It is important to check visa requirements well in advance of travel to avoid any last-minute issues

A Software Developer was asked
Q. 

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 rearr...

Ans. 

The objective is to rearrange a string so that no two adjacent characters are identical. Return the rearranged string or 'NO SOLUTION'.

  • Iterate through the string and count the frequency of each character.

  • Create two lists, one for characters with odd frequency and one for characters with even frequency.

  • If the count of characters with odd frequency is greater than 1, return 'NO SOLUTION'.

  • Alternate between characters...

View all Software Developer interview questions
A Software Developer was asked
Q. 

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 line...
Ans. 

Develop a function to remove all instances of a given character from a string.

  • Iterate through the string character by character and skip the character to be removed.

  • Build a new string by appending characters that are not equal to the given character.

  • Return the final modified string.

  • Handle edge cases like empty string or character not found in the string.

View all Software Developer interview questions
A Software Developer was asked
Q. 

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 i...

Ans. 

Calculate the probability that a knight remains on an N x N chessboard after making K moves.

  • Use dynamic programming to calculate the probability of the knight staying on the board after each move.

  • Consider all possible moves the knight can make from its current position.

  • Keep track of the probabilities at each position on the board after each move.

  • Normalize the probabilities at the end to get the final result.

  • Exampl...

View all Software Developer interview questions

What people are saying about Expedia Group

View All
a business intelligence analyst
1w
Expedia -DS II Salary
Any idea about Expedia-Data Scientist II (Level K) salary?
Got a question about Expedia Group?
Ask anonymously on communities.
🔥 Asked by recruiter 2 times
A Software Developer was asked
Q. 

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 order...

Ans. 

Find duplicates in an array of integers within a specified range.

  • Iterate through the array and keep track of the count of each element using a hashmap.

  • Return elements with count greater than 1 as duplicates.

  • Time complexity can be optimized to O(N) using a set to store duplicates.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Problem: Deletion in Circular Linked List

You are provided with a Circular Linked List of integers and a specific integer, referred to as 'key'.

Your task is to implement a function that locates the speci...

Ans. 

Implement a function to delete a specific key from a Circular Linked List of integers.

  • Traverse the Circular Linked List to find the key to be deleted.

  • Adjust the pointers to remove the node containing the key.

  • Handle the case where the Circular Linked List becomes empty after deletion.

  • Return -1 if the Circular Linked List is empty after deletion.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Page Faults Identification Problem Statement

In computing, a page fault occurs when a process accesses a memory page that is not currently mapped by the memory management unit. To handle new pages being br...

Ans. 

The problem involves determining the number of page faults using the Least Recently Used (LRU) replacement algorithm.

  • Page faults occur when a process accesses a memory page not currently mapped by the memory management unit.

  • Page replacement algorithm like LRU is used to decide which existing page should be replaced.

  • The goal is to calculate the number of page faults based on the given input sequences and memory cap...

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. 

Closest Sum Problem Statement

Given an array of integers ARR of size N and an integer target, find three integers in ARR such that their sum is closest to the target. If there are two closest sums, return ...

Ans. 

Find three integers in an array whose sum is closest to a given target, return the smallest sum if there are two closest sums.

  • Iterate through all possible triplets in the array to find the sum closest to the target.

  • Keep track of the closest sum found so far and update it if a closer sum is found.

  • Return the closest sum at the end of the iteration.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Cycle Detection in a Singly Linked List

Determine if a given singly linked list of integers forms a cycle or not.

A cycle in a linked list occurs when a node's next points back to a previous node in the l...

Ans. 

Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

  • Traverse the linked list using two pointers, one moving one step at a time and the other moving two steps at a time.

  • If the two pointers meet at any point, it indicates the presence of a cycle in the linked list.

  • Use Floyd's Cycle Detection Algorithm for efficient detection of cycles in a linked list.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Deletion in Circular Linked List Problem Statement

Given a Circular Singly Linked List of integers, and a specific value 'VAL', your task is to delete the first occurrence of this value in the linked list....

Ans. 

Delete the first occurrence of a specific value in a Circular Linked List.

  • Traverse the circular linked list to find the value to be deleted.

  • Update the pointers to skip the node containing the value.

  • Handle edge cases like deleting the only node in the list.

  • Return the modified circular linked list.

View all Software Developer interview questions

Expedia Group Interview Experiences

78 interviews found

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. They were looking for a person with expertise in maven, so initial questions were targeted towards maven and dependencies.
  • Q2. Find the equilibrium number was asked for DSA
  • Ans. 

    Equilibrium number refers to a stable state in a system where forces are balanced, often used in algorithms and data structures.

    • In data structures, equilibrium can refer to balanced trees like AVL or Red-Black trees.

    • Example: In an AVL tree, the balance factor (height difference) of nodes is maintained to ensure O(log n) operations.

    • In algorithms, equilibrium can relate to finding stable states in game theory or optimiza...

  • Answered by AI
  • Q3. Implement a singleton patter
  • Ans. 

    A singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Use a private constructor to prevent instantiation from outside the class.

    • Implement a static method to provide access to the single instance.

    • Use lazy initialization to create the instance only when needed.

    • In multi-threaded environments, use synchronization to prevent multiple instances.

  • Answered by AI
  • Q4. Java based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I was told that this round was different as they were looking for someone with expertise. Interviewer suggested that java questions are more relevant and that's why was more oriented towards that.
I'd say be prepared for anything, DSA rounds can become discussion and design rounds at any point, so having some knowledge about all aspects

Skills evaluated in this interview

Software Engineer2 Interview Questions & Answers

user image Rahul Kantheti

posted on 4 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. STAR based scenario questions
  • Q2. Previous work experience and projects
  • Ans. 

    I have 3 years of experience working as a software engineer, with projects including a mobile app for tracking fitness goals and a web application for managing inventory.

    • 3 years of experience as a software engineer

    • Developed a mobile app for tracking fitness goals

    • Created a web application for managing inventory

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

I applied via Approached by Company and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Apache Spark and it's working
  • Ans. 

    Apache Spark is a distributed computing framework for big data processing.

    • Apache Spark is an open-source distributed computing framework.

    • It provides an interface for programming entire clusters with implicit data parallelism and fault tolerance.

    • Spark uses in-memory processing for speed and can run on Hadoop, Mesos, Kubernetes, or in standalone mode.

    • It supports multiple programming languages like Scala, Java, Python, an...

  • Answered by AI
  • Q2. Past Experience
  • Ans. 

    I have over five years of experience in data engineering, focusing on ETL processes, data warehousing, and cloud technologies.

    • Developed ETL pipelines using Apache Spark to process large datasets, improving data processing speed by 30%.

    • Designed and implemented a data warehouse on AWS Redshift, enabling real-time analytics for business intelligence.

    • Collaborated with data scientists to optimize data models, resulting in a...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Git version control question
  • Q2. Python med DSA question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

More than the right answer, focus on the approach. Duration 60 min.

Round 2 - Technical 

(1 Question)

  • Q1. Design a product like google drive
  • Ans. 

    A cloud storage service like Google Drive for storing and sharing files

    • Allow users to upload, store, and organize files in folders

    • Provide sharing options for files and folders with permissions

    • Include collaboration features like real-time editing and commenting

    • Offer integration with other services like Google Docs, Sheets, and Slides

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join Expedia
  • Ans. 

    I want to join Expedia because of its innovative technology, global impact, and collaborative work culture.

    • Expedia is known for its cutting-edge technology and innovative solutions.

    • I am excited about the opportunity to work on projects with a global impact.

    • I value a collaborative work culture where I can learn from and contribute to a talented team.

    • Expedia's reputation for work-life balance and employee development is ...

  • Answered by AI

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 29 Aug 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Why do you want to join Expedia?
Round 2 - One-on-one 

(1 Question)

  • Q1. How would you decide if we have to close a few of our brands?
Round 3 - Case Study 

Size the opaque travel market in the US

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mostly around projects and SQL - group by, self join, window fxn, and solve same problem without window fxn (kind of self join).
Round 2 - Technical 

(1 Question)

  • Q1. 3 DSA questions First was on array, second on hashmap and dp and third was on dp plus trees. tell the approach, and write a working code.
Round 3 - Technical 

(1 Question)

  • Q1. It was on projects, Data pipeline and spark. Discussion around adding incremental data in datawarehouse. Spark architecture. Spark streaming. Its difficulty was higher than other rounds as the interviewe...
Round 4 - Behavioral 

(1 Question)

  • Q1. It was based upon projects and decision making. Discussion around- Strengths and weaknesses. how to resolve conflict in decisions over design in team leadership where i have shown,..etc It was light and m...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Asked two 2 pointer based questions

Round 2 - Case Study 

Asked lru cache system design question

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

I applied via Company Website and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Coding Test 

DSA Problem statement of Trie

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with DS ALgo
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Design bookmyshow
  • Ans. 

    Design a scalable online ticket booking platform for movies and events, focusing on user experience and backend architecture.

    • User Registration: Allow users to create accounts using email or social media.

    • Event Listings: Display movies/events with details like time, location, and available seats.

    • Seat Selection: Implement an interactive seating chart for users to choose their seats.

    • Payment Gateway: Integrate secure paymen...

  • Answered by AI
  • Q2. Experience in Cloud
  • Ans. 

    Extensive experience in designing, implementing, and managing cloud-based solutions.

    • Designed and implemented scalable cloud architectures using AWS, Azure, or Google Cloud

    • Managed cloud infrastructure for high-traffic web applications

    • Experience with containerization technologies like Docker and Kubernetes

    • Implemented serverless computing solutions using AWS Lambda or Azure Functions

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Coding Test 

They have given coding test where 2 medium to easy level questions where asked

Round 2 - Technical 

(1 Question)

  • Q1. It was dsa round where easy to medium level 2 questions were asked , topic linked list and stack
Round 3 - Technical 

(1 Question)

  • Q1. This was a hld round
Round 4 - Technical 

(1 Question)

  • Q1. Final was hm round around projects

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, SQL, Software Design and Agile Coaching.
What are the top questions asked in Expedia Group interview?

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

  1. How would you decide if we have to close a few of our bran...read more
  2. A number x is given, two operation are allowed. Decrement by 1 and multiply by ...read more
  3. Given array of integer create subarray with sum ...read more
What are the most common questions asked in Expedia Group HR round?

The most common HR questions asked in Expedia Group interview are -

  1. What are your salary expectatio...read more
  2. Why should we hire y...read more
  3. Share details of your previous j...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.

Overall Interview Experience Rating

4.2/5

based on 57 interview experiences

Difficulty level

Easy 15%
Moderate 79%
Hard 6%

Duration

Less than 2 weeks 52%
2-4 weeks 23%
4-6 weeks 19%
6-8 weeks 3%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.4k Interviews
Flipkart Interview Questions
3.9
 • 1.5k Interviews
Swiggy Interview Questions
3.7
 • 475 Interviews
BigBasket Interview Questions
3.9
 • 401 Interviews
Meesho Interview Questions
3.7
 • 370 Interviews
JustDial Interview Questions
3.5
 • 359 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Eternal Limited Interview Questions
3.7
 • 327 Interviews
Blinkit Interview Questions
3.8
 • 241 Interviews
Oyo Rooms Interview Questions
3.2
 • 232 Interviews
View all

Expedia Group Reviews and Ratings

based on 337 reviews

3.6/5

Rating in categories

3.4

Skill development

3.9

Work-life balance

3.9

Salary

3.0

Job security

3.7

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 337 Reviews and Ratings
Software Development Engineer III

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Software Development Engineer III

Gurgaon / Gurugram

5-10 Yrs

₹ 38-47 LPA

Software Development Engineer II - Marketplace Technology

Bangalore / Bengaluru

2-5 Yrs

₹ 25-35 LPA

Explore more jobs
Software Development Engineer II
246 salaries
unlock blur

₹22 L/yr - ₹36 L/yr

Software Development Engineer 3
104 salaries
unlock blur

₹31.9 L/yr - ₹53.6 L/yr

Software Development Engineer
76 salaries
unlock blur

₹18.6 L/yr - ₹33.8 L/yr

Senior Software Engineer
62 salaries
unlock blur

₹36.2 L/yr - ₹64 L/yr

Software Engineer
61 salaries
unlock blur

₹15.4 L/yr - ₹33.8 L/yr

Explore more salaries
Compare Expedia Group with

Amazon

4.0
Compare

Flipkart

3.9
Compare

Udaan

3.9
Compare

BigBasket

3.9
Compare
write
Share an Interview