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 Senior Developer Interview Questions and Answers

Updated 3 Apr 2024

Expedia Group Senior Developer Interview Experiences

1 interview found

Senior Developer Interview Questions & Answers

user image Shimla Rawat

posted on 3 Apr 2024

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

(1 Question)

  • Q1. Build system for Tiny URL
  • Ans. 

    Build a system for generating and managing Tiny URLs

    • Use a unique identifier for each long URL to generate a short URL

    • Store the mapping of short URL to long URL in a database

    • Implement a redirect mechanism to redirect users from short URL to long URL

    • Consider adding expiration dates for short URLs to manage storage

    • Implement analytics to track usage of short URLs

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - System design

Skills evaluated in this interview

Interview questions from similar companies

I applied via Referral and was interviewed before Nov 2021. 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 - Coding Test 

Coding test was of 1:30 hour. Topic : Data structure and Algorithms, Platform : intervue.io

Round 3 - One-on-one 

(5 Questions)

  • Q1. 1. number of island (leetcode question [Medium]) 2. bitonic subsequence in an array (dp question)
  • Q2. 1. bitwise OR of the sum of all the subsequence of the array [Hard] 2. course schedule II (leetcode question)
  • Ans. 

    Two software development questions: bitwise OR of array subsequences and course schedule II.

    • Question 1 requires finding the bitwise OR of the sum of all subsequences of an array.

    • Question 2 is a LeetCode question about scheduling courses with prerequisites.

    • For question 1, we can use dynamic programming to find all subsequences and then calculate the bitwise OR.

    • For question 2, we can use a topological sort to determine t

  • Answered by AI
  • Q3. 1. oops, dbms, os questions 2. project discussions
  • Q4. HR : normal hr question (see the interviewbit hr question sheet it will be really very helpfull)
  • Q5. They have taken my last 10 min round just for clarifying the location preference and all.

Interview Preparation Tips

Topics to prepare for Zomato Software Developer interview:
  • Data Structures
  • Operating Systems
  • DBMS
  • SQL
Interview preparation tips for other job seekers - I would recommend do more and more practice on data structure & Algorithms from different website like leetcode, codechef because they ask sometimes the direct question from leetcode and other platforms.
Do brush up on the cs fundamentals as they are very important in the 2nd and 3rd round of the interview.
Project which are written on the resume should not be copied as they grill on resume.

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Genric aptitude questions also computer fundamentals like dbms

Round 2 - Coding Test 

DP questions, tree questions r there

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare medium questions atleast
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Right view of a Tree
  • Ans. 

    The right view of a tree shows the nodes that are visible when looking at the tree from the right side.

    • The right view of a tree can be obtained by performing a level order traversal and keeping track of the rightmost node at each level.

    • Example: For a tree with nodes 1, 2, 3, 4, 5, the right view would be 1, 3, 5.

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. Software coding decoding
  • Q2. Phyton java spark
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Given an array of n numbers , find the kth largest find the sum from a th largest to bth largest n can be huge
  • Ans. 

    Find the sum of kth to bth largest numbers in a huge array efficiently.

    • Sort the array in descending order to easily find the kth and bth largest numbers.

    • Use a priority queue or min heap to efficiently find the kth and bth largest numbers without sorting the entire array.

    • Once you have the kth and bth largest numbers, iterate through the array and sum the numbers between them.

  • Answered by AI
  • Q2. Mostly elasticsearch related and company work related questions

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

1.5 hours Coding Round conducted on HackerRank.

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

HAckerrank based test

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

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

Round 1 - Technical 

(1 Question)

  • Q1. 3 sum Trapping rain water
  • Ans. 

    3 sum and trapping rain water are common coding interview questions that test problem-solving skills.

    • 3 sum problem involves finding three numbers in an array that add up to a target sum.

    • Trapping rain water problem involves calculating the amount of water that can be trapped between bars in an elevation map.

    • Both problems require efficient algorithms to solve.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Linked List in a binary tree
  • Ans. 

    A linked list can be implemented in a binary tree by using the left child as the next node and the right child as the previous node.

    • Each node in the binary tree will have a left child pointer and a right child pointer.

    • Traversal of the linked list can be done by following the left child pointers.

    • Example: In a binary tree, the left child of a node can point to the next node in the linked list.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Implement LRU cache
  • Ans. 

    LRU cache is a data structure that stores the most recently used items, discarding the least recently used items when full.

    • Use a combination of a doubly linked list and a hashmap to efficiently implement LRU cache.

    • When an item is accessed, move it to the front of the linked list to mark it as the most recently used.

    • When adding a new item, check if the cache is full. If so, remove the least recently used item from the e...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Mostly behavioural questions

Interview Preparation Tips

Topics to prepare for Myntra Software Developer interview:
  • DSA
  • Algorithms

Skills evaluated in this interview

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

3 coding questions and 20 mcq's

  • Q1. 

    Maximum Sum of Two Non-Overlapping Subarrays

    Given an integer array ARR and a positive integer K, your task is to determine two non-overlapping subarrays of length K that yield the maximum combined sum.

    ...

  • Ans. 

    The task is to find two non-overlapping subarrays of length K in an array, such that their sum is maximum.

    • Iterate through the array and calculate the sum of each subarray of length K

    • Store the maximum sum obtained from the first subarray

    • Iterate again and calculate the sum of each subarray of length K, excluding the previous subarray

    • Store the maximum sum obtained from the second subarray

    • Return the sum of the two maximum

  • Answered by AI
  • Q2. 

    Distinct Subsequences Problem Statement

    You are given a string 'S' of length 'N' which may include duplicate alphabets. Your goal is to calculate the number of distinct subsequences in the string.

    Exampl...

  • Ans. 

    The task is to find the count of distinct subsequences in a given string.

    • Use dynamic programming to solve the problem.

    • Create a 2D array to store the count of distinct subsequences for each prefix of the string.

    • Initialize the first row of the array with 1, as there is only one subsequence of an empty string.

    • For each character in the string, calculate the count of distinct subsequences by considering two cases: including...

  • Answered by AI
  • Q3. 

    Array Intersection Problem Statement

    Given two integer arrays/ lists ARR1 and ARR2 of sizes N and M respectively, you are required to determine their intersection. An intersection is defined as the set of...

  • Ans. 

    The task is to find the intersection of two integer arrays/lists.

    • Read the number of test cases

    • For each test case, read the size and elements of the first array/list

    • Read the size and elements of the second array/list

    • Find the intersection of the two arrays/lists

    • Print the intersection elements in the order they appear in the first array/list

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

Online video call based round, Timing was 10-11 AM
Interview started with basic greetings, post that i explained by projects in brief and then we jumped right into dsa questoins.

  • Q1. 

    Number of Islands Problem Statement

    You are given a non-empty grid that consists of only 0s and 1s. Your task is to determine the number of islands in this grid.

    An island is defined as a group of 1s (re...

  • Ans. 

    The task is to find the number of islands in a grid consisting of 0s and 1s.

    • An island is a group of 1s connected horizontally, vertically, or diagonally

    • The grid is surrounded by 0s on all four edges

    • Use a depth-first search (DFS) or breadth-first search (BFS) algorithm to traverse the grid and count the number of islands

    • Initialize a visited array to keep track of visited cells

    • For each unvisited cell with a value of 1, p...

  • Answered by AI
  • Q2. 

    Arrangement Problem Statement

    Determine the number of permutations of list A = [1, 2, ..., N] such that for every index i, either A[i] is divisible by i or i is divisible by A[i].

    Input:

    The input start...
  • Ans. 

    The goal is to find the number of permutations of a list satisfying certain conditions.

    • Iterate through all permutations of the list

    • Check if each permutation satisfies the given conditions

    • Count the number of permutations that satisfy the conditions

    • Return the count for each test case

  • Answered by AI
  • Q3. 

    Idempotent Matrix Verification

    Determine if a given N * N matrix is an idempotent matrix. A matrix is considered idempotent if it satisfies the following condition:

    M * M = M

    Input:

    The first line cont...
  • Ans. 

    An idempotent matrix is a square matrix that remains unchanged when multiplied by itself.

    • Check if the given matrix satisfies the property M*M = M

    • Iterate through each element of the matrix and perform the matrix multiplication

    • Compare the result with the original matrix

    • If they are equal, return true; otherwise, return false

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

This was EM round, started with me explaining my projects in deep and facing some counter questions on that, proceeded to os, dbms basic questions and some low level designing and lastly a puzzle to end interview.

  • Q1. Can you design an attendance management system?
  • Ans. 

    Design attendance management system

    • Create a database to store employee information

    • Implement a user interface for employees to mark their attendance

    • Develop a system to track and record attendance data

    • Generate reports and analytics based on attendance data

  • Answered by AI
Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

This was formality round, HR came and explained what meesho does and told my joining dates and compensation details.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo criteriaMeesho interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, DBMS, Dynamic Programming, Low level designTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Do medium level queustions
Tip 2 : Learn basic system design for startup interviews.

Application resume tips for other job seekers

Tip 1 : Put things on your resume that you know by your heart, otherwise will have a lot of difficulty in the HM round.
Tip 2 : Do not mention co-curricular activities on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Expedia Group Interview FAQs

How many rounds are there in Expedia Group Senior Developer interview?
Expedia Group interview process usually has 1 rounds. The most common rounds in the Expedia Group interview process are Technical.

Tell us how to improve this page.

Expedia Group Senior Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.1k Interviews
Flipkart Interview Questions
3.9
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 434 Interviews
BigBasket Interview Questions
3.9
 • 364 Interviews
Udaan Interview Questions
3.9
 • 336 Interviews
Meesho Interview Questions
3.7
 • 335 Interviews
JustDial Interview Questions
3.5
 • 332 Interviews
Zomato Interview Questions
3.7
 • 312 Interviews
Zepto Interview Questions
3.5
 • 244 Interviews
Myntra Interview Questions
4.0
 • 217 Interviews
View all
Software Development Engineer II
206 salaries
unlock blur

₹15.6 L/yr - ₹40 L/yr

Software Development Engineer
95 salaries
unlock blur

₹12 L/yr - ₹36 L/yr

Software Development Engineer 3
77 salaries
unlock blur

₹27 L/yr - ₹58 L/yr

Software Engineer
60 salaries
unlock blur

₹12 L/yr - ₹36 L/yr

Software Developer
51 salaries
unlock blur

₹10 L/yr - ₹35 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
Did you find this page helpful?
Yes No
write
Share an Interview