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 SDE Intern Interview Questions and Answers

Updated 26 Jul 2024

Expedia Group SDE Intern Interview Experiences

1 interview found

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

Top trending discussions

View All
Indian Startups
2w
a senior executive
One of the best sources for Startup investment: DAHEJ(DOWRY)
You won't believe my senior has a good corporate job with over 10 years of experience. But suddenly resigned just a few days after his wedding. We all thought maybe he got married and wants to spend his time with his wife, and decided to go to his place to give him a proper farewell. All of us got shocked after knowing that he left because his father-in-law gifted him a fat cash amount and a car in the name of "blessings." He’s using the money to fund his startup and the car for "business movement." I mean seriously? People are now using dowry as startup capital and walking around acting like CEOs, playing boss with someone else’s money. Bas, shaadi karo aur apne sapne chalu karo, courtesy sasural. I don't know feeling inspired? Or disgusted?
Got a question about Expedia Group?
Ask anonymously on communities.

Interview questions from similar companies

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 

(1 Question)

  • Q1. Write a program on stack operations
  • Ans. 

    A program for stack operations

    • Create a stack using an array or linked list

    • Implement push() and pop() functions

    • Check for stack overflow and underflow

    • Implement peek() function to view top element

    • Example: stack.push(5), stack.pop(), stack.peek()

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have good knowledge on DSA,time complexities

I applied via Campus Placement and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Duration: 1hr+
Topics: 2 - coding questions(logic-based)
platform: Hackerank

Round 2 - Technical 

(2 Questions)

  • Q1. Find the square root of a number using only 4 basic arithmetic operations (+,-,*,/) without using a power operator and inbuilt libraries. For numbers that are not perfect squares, print the integer part of...
  • Ans. 

    Find square root of a number using basic arithmetic operations without power operator and inbuilt libraries.

    • Use binary search to find the integer part of the square root

    • Use long division method to find the decimal part of the square root

    • Repeat the above steps until desired accuracy is achieved

    • Handle edge cases like negative numbers and numbers less than 1

  • Answered by AI
  • Q2. Addition of two linked lists, and finallt return the result as a linked list

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on Graph/ Tree data structure, and you should be able to your logic to the interviewer, and then code it. You should also be able to optimize your code.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jun 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Count occurrences in sorted array
  • Ans. 

    Count occurrences of a given element in a sorted array.

    • Use binary search to find the first and last occurrence of the element.

    • Subtract the indices to get the count.

    • Handle edge cases like element not present in the array.

  • Answered by AI
  • Q2. Deepest left node in binary tree
  • Ans. 

    Find the deepest left node in a binary tree.

    • Traverse the tree recursively and keep track of the depth and whether the current node is a left node.

    • If the current node is a leaf node and its depth is greater than the deepest left node found so far, update the deepest left node.

    • Return the deepest left node found.

    • Example: For the binary tree with root node 1, left child 2, and left child of 2 being 4, the deepest left node...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Treat interviewer as your friend...he will be friendly and do listen to his advices

Skills evaluated in this interview

I applied via AngelList and was interviewed before Nov 2021. There were 4 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 question level easy-medium leetcode

Round 3 - Technical 

(2 Questions)

  • Q1. 2 coding question leetcode
  • Q2. Dp graph trees stack queue
Round 4 - Technical 

(1 Question)

  • Q1. 2 Coding question leetcode easy medium

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep grinding and always speak out loud think twice before writing any code
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

2 hours mcqs from all cse related topics + 1 coding question

Round 2 - Coding Test 

3 coding questions easy level

Round 3 - Technical 

(1 Question)

  • Q1. I do not remember

SDE Intern Interview Questions & Answers

Amazon user image AKSHITA PATIL

posted on 15 Oct 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

Easy lc or medium lc quest

Round 3 - One-on-one 

(1 Question)

  • Q1. Coding round only was
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

2 DSA questions and 70 minutes.

Round 2 - Technical 

(2 Questions)

  • Q1. Implement Min-stack using O(N) space .
  • Ans. 

    Min-stack is implemented using O(N) space by keeping track of minimum value at each element.

    • Use two stacks - one to store the actual elements and another to store the minimum value at each step.

    • When pushing an element, check if it is smaller than the current minimum and update the minimum stack accordingly.

    • When popping an element, also pop from the minimum stack if the popped element is the current minimum.

  • Answered by AI
  • Q2. Sliding Window Problem.
  • Ans. 

    Sliding Window Problem involves finding a subarray of fixed size k with the maximum sum.

    • Use a sliding window approach to iterate through the array and keep track of the sum of elements within the window.

    • Slide the window by removing the first element and adding the next element in each iteration.

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

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA .

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 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 

1 hour long test, 1 easy and 1 medium leetcode problem + some apti questions.

Round 3 - Technical 

(1 Question)

  • Q1. Asked 1 codding question (Medium) * Next permutation of a number. Number was a time stamp (eg 11:55 PM)
  • Ans. 

    Find the next permutation of a given timestamp in HH:MM AM/PM format.

    • Convert the timestamp to a 24-hour format for easier manipulation.

    • Identify the rightmost pair where the earlier digit is smaller than the later one.

    • Swap this digit with the smallest larger digit to its right.

    • Reverse the digits to the right of the swapped position to get the next permutation.

    • Example: For '11:55 PM', the next permutation is '12:00 AM'.

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. 3 medium leetcode questions from graphs, queue and dp.

SDE Intern Interview Questions & Answers

Amazon user image priyansha singhal

posted on 8 May 2024

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

It was a 2 hour test having 2 coding questions . Difficulty was easy and medium.

Round 2 - Interview 

(1 Question)

  • Q1. Two questions were asked . To make a BST from array elements . Snakes and ladder. Besides this interviewer also asked about my projects and basic introduction.

Expedia Group Interview FAQs

How many rounds are there in Expedia Group SDE Intern interview?
Expedia Group interview process usually has 2 rounds. The most common rounds in the Expedia Group interview process are Aptitude Test and Coding Test.

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
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.8
 • 473 Interviews
BigBasket Interview Questions
3.9
 • 399 Interviews
Meesho Interview Questions
3.7
 • 368 Interviews
JustDial Interview Questions
3.5
 • 358 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Eternal Limited Interview Questions
3.7
 • 327 Interviews
Oyo Rooms Interview Questions
3.2
 • 230 Interviews
Myntra Interview Questions
3.9
 • 228 Interviews
View all

Expedia Group SDE Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

3.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Development Engineer II
246 salaries
unlock blur

₹22 L/yr - ₹38.6 L/yr

Software Development Engineer 3
101 salaries
unlock blur

₹22 L/yr - ₹61 L/yr

Software Development Engineer
82 salaries
unlock blur

₹12 L/yr - ₹40 L/yr

Software Engineer
61 salaries
unlock blur

₹12 L/yr - ₹35.8 L/yr

Data Scientist
60 salaries
unlock blur

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