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

based on 281 Reviews

Filter interviews by

Expedia Group Software Engineer III Interview Questions and Answers

Updated 6 Aug 2024

Expedia Group Software Engineer III Interview Experiences

3 interviews found

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

(3 Questions)

  • Q1. Maximum Length of increasing subsequence
  • Ans. 

    Find the maximum length of increasing subsequence in an array of strings.

    • Use dynamic programming to keep track of the length of increasing subsequences ending at each index.

    • Iterate through the array and update the length of increasing subsequences.

    • Return the maximum length found.

  • Answered by AI
  • Q2. LLD for a storage based system
  • Ans. 

    LLD for a storage based system involves designing the detailed architecture and components of the system to efficiently store and retrieve data.

    • Identify the requirements for the storage system, including data types, volume, access patterns, and performance expectations.

    • Design the data storage architecture, including data structures, indexing mechanisms, and storage technologies like databases or file systems.

    • Define the...

  • Answered by AI
  • Q3. Hashmap based question
Round 3 - Technical 

(1 Question)

  • Q1. LLD for a S3 or a storage based system
  • Ans. 

    LLD for a S3 or a storage based system involves designing the detailed architecture and components of the system.

    • Define the data model including objects, metadata, and storage classes

    • Design the system components like storage nodes, metadata servers, and access control mechanisms

    • Consider scalability, fault tolerance, and data consistency in the design

    • Implement features like versioning, encryption, and access control pol...

  • Answered by AI

Skills evaluated in this interview

Software Engineer III Interview Questions Asked at Other Companies

Q1. Find the highest floor, from where if an egg is dropped will not ... read more
asked in Walmart
Q2. What would be the ideal data structure to represent people and fr ... read more
asked in Walmart
Q3. Custom implementation of stack where there are two additional met ... read more
asked in UST
Q4. =>What is garbage collection in c# =>What is dispose and fi ... read more
asked in Walmart
Q5. Given a tree and a node, print all ancestors of Node
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Coding Test 

45 mins coding interview with medium leetcode question from graph

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Test contains 26 questions for me 13 are java based 13 are c++ based

Round 2 - Technical 

(2 Questions)

  • Q1. Indexing in dbms
  • Ans. 

    Indexing in DBMS is a technique to improve the performance of queries by creating a data structure that allows for faster retrieval of data.

    • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition.

    • Types of indexes include clustered, non-clustered, unique, and composite indexes.

    • Examples of indexing techniques include B-tree, hash, and bitmap indexes.

    • Indexing can...

  • Answered by AI
  • Q2. Find whether two strings are or not anagrams
  • Ans. 

    Check if two strings are anagrams by comparing the sorted characters in each string.

    • Sort the characters in both strings and compare if they are equal.

    • Ignore spaces and punctuation when comparing the strings.

    • Example: 'listen' and 'silent' are anagrams.

    • Example: 'hello' and 'world' are not anagrams.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Inorder traversal without recursion
  • Ans. 

    Use a stack to simulate the recursive inorder traversal process

    • Create an empty stack to store nodes

    • Start with the root node and push it onto the stack

    • While the stack is not empty, keep traversing left and pushing nodes onto the stack

    • Once you reach a leaf node, pop it from the stack, print its value, and move to its right child

    • Repeat the process until all nodes have been visited

  • Answered by AI
  • Q2. How to make a class final
  • Ans. 

    To make a class final, use the 'final' keyword in the class declaration.

    • Use the 'final' keyword before the 'class' keyword in the class declaration

    • A final class cannot be subclassed or extended

    • Final classes are often used for utility classes or classes that should not be modified

  • Answered by AI

Skills evaluated in this interview

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 Recruitment Consulltant and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Java coding questions

Round 2 - Technical 

(3 Questions)

  • Q1. Explain Java oops concepts?
  • Ans. 

    Java oops concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation hides the internal state of an object and restricts access to it.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides the implementation details and only shows the necessary features.

  • Answered by AI
  • Q2. What is collections?
  • Ans. 

    Collections in programming refer to data structures that allow you to store and manipulate groups of objects.

    • Collections provide a way to organize and manage data efficiently

    • Examples include lists, sets, maps, queues, and stacks

    • Collections can be used to perform operations like adding, removing, and searching for elements

  • Answered by AI
  • Q3. Write a code to reverse number?
  • Ans. 

    Code to reverse a number in JavaScript

    • Convert the number to a string to easily manipulate each digit

    • Use array methods like split, reverse, and join to reverse the number

    • Convert the reversed string back to a number before returning

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduction about yourself?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Proficient in programming languages like Java, Python, and C++

    • Completed internships at tech companies like Google and Microsoft

    • Enthusiastic about learning new technologies and working in a team environment

  • Answered by AI
  • Q2. Do you know about the company?
  • Ans. 

    The company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Company focuses on creating innovative software solutions

    • Has a strong presence in various industries

    • Known for their expertise in software development

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Easy Questions- Can be done with decent practice

Round 2 - Technical 

(2 Questions)

  • Q1. Array question - basic knowledge sufficient
  • Q2. Maths questions + stack implementation
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
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Data structure and algorithm
  • Q2. Some tricky logical question
  • Q3. Stack and queue
  • Q4. Some basic question about system Design
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Coding Test 

Hackerrank Coding Test, Leetcode medium questions

Round 2 - Coding Test 

HLD test, was asked to design an online coding platform like leetcode

Round 3 - Technical 

(2 Questions)

  • Q1. Most interesting project you have worked on
  • Q2. How do you handle conflict at workplace

Interview Preparation Tips

Interview preparation tips for other job seekers - - Prepare leetcode medium
- Prepare HLD well

Expedia Group Interview FAQs

How many rounds are there in Expedia Group Software Engineer III interview?
Expedia Group interview process usually has 2 rounds. The most common rounds in the Expedia Group interview process are Technical, Coding Test and Resume Shortlist.
What are the top questions asked in Expedia Group Software Engineer III interview?

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

  1. LLD for a S3 or a storage based sys...read more
  2. LLD for a storage based sys...read more
  3. Maximum Length of increasing subseque...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Swiggy Interview Questions
3.8
 • 423 Interviews
BigBasket Interview Questions
3.9
 • 346 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
JustDial Interview Questions
3.5
 • 327 Interviews
Meesho Interview Questions
3.7
 • 327 Interviews
Zomato Interview Questions
3.8
 • 315 Interviews
Oyo Rooms Interview Questions
3.3
 • 226 Interviews
Myntra Interview Questions
4.0
 • 212 Interviews
View all
Expedia Group Software Engineer III Salary
based on 20 salaries
₹32 L/yr - ₹41 L/yr
35% more than the average Software Engineer III Salary in India
View more details
Software Development Engineer II
191 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
72 salaries
unlock blur

₹27 L/yr - ₹55 L/yr

Software Developer
66 salaries
unlock blur

₹10 L/yr - ₹34.9 L/yr

Software Engineer
57 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
Did you find this page helpful?
Yes No
write
Share an Interview