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
3.8

based on 277 Reviews

Filter interviews by

Expedia Group Senior Software Engineer Interview Questions, Process, and Tips

Updated 24 Aug 2024

Top Expedia Group Senior Software Engineer Interview Questions and Answers

View all 6 questions

Expedia Group Senior Software Engineer Interview Experiences

4 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Solve sudoku, row and columns should have 1-9 numbers and the numbers shouldnt repeat

Round 2 - Technical 

(1 Question)

  • Q1. What is the toughest problem you solved and once I answered they started digging in to it
Round 3 - Technical 

(1 Question)

  • Q1. System Design - Design a parking lot
  • Ans. 

    Design a parking lot system with features like parking, retrieving, and tracking available spots.

    • Create a ParkingLot class with attributes like total number of spots, available spots, and a list of parked vehicles.

    • Implement methods for parking a vehicle, retrieving a vehicle, and tracking available spots.

    • Use data structures like arrays or lists to manage parked vehicles and available spots.

    • Consider implementing feature...

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

(1 Question)

  • Q1. Several questions related to behavioral and troubleshooting

Interview Preparation Tips

Interview preparation tips for other job seekers - be confidant

Skills evaluated in this interview

Senior Software Engineer Interview Questions & Answers

user image Mayank Upadhyaya

posted on 19 Dec 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 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 - Technical 

(2 Questions)

  • Q1. Given array of integer create subarray with sum = 0
  • Ans. 

    Create subarrays with sum = 0 from given array of integers.

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

    • Store the running sum in a hashmap and check if the current sum - any previous sum equals 0.

    • If yes, then the subarray between those two indices has a sum of 0.

  • Answered by AI
  • Q2. Left view of binary tree
  • Ans. 

    The left view of a binary tree is the set of nodes visible when the tree is viewed from the left side.

    • Traverse the tree in a level order manner and keep track of the first node at each level.

    • Use a queue to store nodes at each level and update the left view nodes accordingly.

    • Example: For a binary tree with root node 1, left child 2, and right child 3, the left view would be [1, 2].

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nt ... read more
asked in Capgemini
Q2. Pascal's TriangleYou are given an integer N. Your task is to retu ... read more
Q3. K Largest Elements You are given with an integer k and an array o ... read more
asked in GlobalLogic
Q4. System Design QuestionCreate a simple shopping application. They ... read more
asked in Info Edge
Q5. Buy and Sell StockYou are Harshad Mehta’s friend. He told you the ... read more
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

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

I applied via Approached by Company and was interviewed before Nov 2022. There were 3 interview rounds.

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 - Technical 

(1 Question)

  • Q1. Prefer not to due to NDA
Round 3 - Coding Test 

Brush up on DS and Algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on DS and algorithms

Expedia Group interview questions for designations

 Senior Software Development Engineer

 (1)

 Software Engineer

 (3)

 Senior Software Developer

 (1)

 Software Engineer III

 (3)

 Software Development Engineer

 (3)

 Principal Software Engineer

 (1)

 Software Engineer Intern

 (1)

 Software Development Engineer II

 (4)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Minimum Knight Moves (LC Medium)
  • Q2. OS, CN, DB concepts like multithreading, semaphore, tcp vs udp, transaction and ACId properties. Java concepts like stack vs heap(memory), error vs exception. Any 1 Project discussion for 10 mins

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all the fundamental concepts of operating systems and databases. Refer to the company-tagged questions from LC.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Print the nodes of a n-ary tree in an arc wise manner as seen from the outside.
  • Ans. 

    Print nodes of n-ary tree in arc wise manner from outside

    • Traverse the tree level by level from outside to inside

    • Use a queue to keep track of nodes at each level

    • Print the nodes at each level in a clockwise or anticlockwise manner

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Uber Senior Software Engineer interview:
  • n-ary tree

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Coding and behavioral questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed before Jul 2023.

Round 1 - Coding Test 

45 min round. Similar to Leetcode medium level question.

Round 2 - Coding Test 

45 min coding round, 2 question asked

Round 3 - Technical 

(1 Question)

  • Q1. System design of proximity service
  • Ans. 

    Design a system for proximity service

    • Utilize geolocation data to track user locations

    • Implement algorithms to calculate proximity between users

    • Use real-time updates to notify users of nearby contacts

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

(1 Question)

  • Q1. Behavioral questions

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Introduction about yourself and expectation
Round 2 - Technical 

(3 Questions)

  • Q1. IOS questions and architecture question about modularisation. From resume.
  • Q2. Question Asked about memory management
  • Q3. Question about modularisation and interface design
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Sep 2022. 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 - Technical 

(6 Questions)

  • Q1. Cloud Engineering profile needs detailed knowledge on cloud operations and security. It also need’s infrastructure to be setup and architected to decide on which cloud to be setup like private ,public or h...
  • Q2. Salary package for me
  • Q3. 1.5 Cr with US base office location for me - Chaitra S Kulkarni
  • Q4. I need new profile to grow for this upcoming IT world like RSA Cloud and JIO Cloud
  • Q5. Need company to be tied with Indian government
  • Q6. Needs attention from Karnataka government

Interview Preparation Tips

Interview preparation tips for other job seekers - Never leave a company who gives you growth to think and earn in your life .

Expedia Group Interview FAQs

How many rounds are there in Expedia Group Senior Software Engineer interview?
Expedia Group interview process usually has 3-4 rounds. The most common rounds in the Expedia Group interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Expedia Group Senior 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 Expedia Group. The most common topics and skills that interviewers at Expedia Group expect are Agile, Automation, Data Structures, NoSQL and Object Oriented Design.
What are the top questions asked in Expedia Group Senior Software Engineer interview?

Some of the top questions asked at the Expedia Group Senior Software Engineer interview -

  1. Given array of integer create subarray with sum ...read more
  2. System Design - Design a parking ...read more
  3. Longest subsequence with sum z...read more

Tell us how to improve this page.

People are getting interviews through

based on 4 Expedia Group interviews
Company Website
Job Portal
Referral
25%
25%
25%
25% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Expedia Group Senior Software Engineer Salary
based on 39 salaries
₹25 L/yr - ₹65 L/yr
176% more than the average Senior Software Engineer Salary in India
View more details

Expedia Group Senior Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-Life balance

3.0

Salary & Benefits

4.0

Job Security

5.0

Company culture

4.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Software Development Engineer II
201 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
70 salaries
unlock blur

₹27 L/yr - ₹55 L/yr

Software Developer
67 salaries
unlock blur

₹10 L/yr - ₹41.5 L/yr

Software Engineer
58 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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview