Upload Button Icon Add office photos

Uber

Compare button icon Compare button icon Compare

Filter interviews by

Uber Software Engineer Interview Questions and Answers

Updated 26 Dec 2024

9 Interview questions

A Software Engineer was asked 10mo ago
Q. Describe the architecture of Netflix.
Ans. 

Netflix architecture is a scalable microservices-based system with a focus on high availability and performance.

  • Use microservices architecture to break down the system into smaller, independent services

  • Implement a content delivery network (CDN) for efficient content distribution

  • Utilize cloud services like AWS for scalability and reliability

  • Implement a recommendation engine for personalized content suggestions

  • Use a...

A Software Engineer was asked
Q. Given a read-only array, find the kth smallest element in an unordered array with O(1) space complexity.
Ans. 

Find kth smallest element in unordered array with O(1) space

  • Use the QuickSelect algorithm to partition the array and find the kth smallest element

  • Choose a pivot element and partition the array into two subarrays

  • Recursively partition the subarray that contains the kth smallest element

  • Repeat until the pivot element is the kth smallest element

  • Time complexity: O(n) average case, O(n^2) worst case

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
A Software Engineer was asked
Q. Given a 2D matrix with some doors (D) and walls (W), how would you fill a distance matrix with the minimum distance to the nearest door?
Ans. 

Given a 2D matrix with doors and walls, fill distance matrix with minimum distance to the nearest door.

  • Iterate through the matrix and find the doors

  • Use Breadth-First Search (BFS) to calculate the minimum distance from each cell to the nearest door

  • Update the distance matrix with the minimum distances

A Software Engineer was asked
Q. 

Boolean Matrix Transformation Challenge

Given a 2-dimensional boolean matrix mat of size N x M, your task is to modify the matrix such that if any element is 1, set its entire row and column to 1. Specific...

Ans. 

Modify a boolean matrix such that if any element is 1, set its entire row and column to 1.

  • Iterate through the matrix to find elements with value 1

  • Store the row and column indices of these elements

  • Update the entire row and column for each element found to be 1

What people are saying about Uber

View All
a digital marketer
17h
Now UBER, OLA, RAPIDO should start launching boats!
After looking at the condition of Gurgaon roads and traffic due to widespread waterlogging and heavy rainfall............... i feel Uber, Ola should start thinking about a new launch, BOAT ! At least we can reach the office on time! What do you think, guys?
FeedCard Image
Got a question about Uber?
Ask anonymously on communities.
A Software Engineer was asked
Q. 

K-Palindrome Problem Statement

Determine whether a given string str can be considered a K-Palindrome.

A string is considered a K-Palindrome if it can be transformed into a palindrome after removing up to ...

Ans. 

The problem is to determine whether a given string can be considered a K-Palindrome by removing up to 'k' characters.

  • Iterate through the string from both ends and check if characters match, if not increment removal count

  • If removal count is less than or equal to k, return True, else return False

  • Use dynamic programming to optimize the solution by storing subproblem results

A Software Engineer was asked
Q. 

Find the k-th Node from the End of a Linked List

Given the head node of a singly linked list and an integer 'k', this problem requires you to determine the value at the k-th node from the end of the linked...

Ans. 

To find the k-th node from the end of a linked list, iterate through the list to determine the size, then traverse again to reach the k-th node from the end.

  • Iterate through the linked list to determine its size.

  • Calculate the position of the k-th node from the end based on the size of the list.

  • Traverse the list again to reach the k-th node from the end.

  • Return a pointer to the k-th node from the end.

A Software Engineer was asked
Q. Can you design a system like Uber, explaining the various components and architecture involved?
Ans. 

Designing a system like Uber involves components like user app, driver app, server, database, and algorithms for matching and routing.

  • User app for booking rides and tracking

  • Driver app for accepting rides and navigation

  • Server for handling requests and communication between apps

  • Database for storing user, driver, and ride information

  • Algorithms for matching riders with drivers and routing

Are these interview questions helpful?
A Software Engineer was asked
Q. 

Kth Largest Element Problem Statement

Given an array of distinct positive integers and a number 'K', your task is to find the K'th largest element in the array.

Example:

Input:
Array: [2,1,5,6,3,8], K =...
Ans. 

Find the Kth largest element in an array of distinct positive integers.

  • Sort the array in non-increasing order

  • Return the Kth element from the sorted array

  • Handle multiple test cases

A Software Engineer was asked
Q. 

Orange Rotting Problem Statement

Consider a grid containing oranges. Each cell in this grid can hold one of three integer values:

  • Value 0: Represents an empty cell.
  • Value 1: Represents a fresh orange...
Ans. 

The task is to determine the minimum time required for all fresh oranges to become rotten in a grid.

  • Create a queue to store the rotten oranges and their time of rotting.

  • Iterate through the grid to find the initial rotten oranges and add them to the queue.

  • Perform BFS by popping each rotten orange from the queue, rot adjacent fresh oranges, and add them to the queue with updated time.

  • Continue until the queue is empt...

Uber Software Engineer Interview Experiences

14 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

3 questions of dsa
1 of api

Round 2 - Technical 

(1 Question)

  • Q1. Graph based question to find the shortest path between 2 prime numbers by changing 1 digit at once and obtained number should be prime too.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Thoroughly dsa foe 1st round
For 2nd round there was low level design
But I couldn't get to the 2nd round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 hour on data structures and algorithms

Round 2 - One-on-one 

(1 Question)

  • Q1. Build Netflix architecture
  • Ans. 

    Netflix architecture is a scalable microservices-based system with a focus on high availability and performance.

    • Use microservices architecture to break down the system into smaller, independent services

    • Implement a content delivery network (CDN) for efficient content distribution

    • Utilize cloud services like AWS for scalability and reliability

    • Implement a recommendation engine for personalized content suggestions

    • Use a dist...

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

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

Round 1 - Coding Test 

3 Leetcode questions, Easy, medium, hard. Array, String Manipulation, and Matrix related.

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

70 mins on code signal,4 questions

Interview Preparation Tips

Interview preparation tips for other job seekers - dsa
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Question on Bellman Ford Algorithm

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

Priority Queue with linked list

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

4 question
2 very easy, one meduim but constraints were relaced, last question related to segment tree for traversing words

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

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

Questions asked 2
1. Group Anagrams
2. Question based kn recursion

Interview Preparation Tips

Interview preparation tips for other job seekers - Question on design twitter

I applied via

Round 1 - Coding Test 

Over the questions asked were difficult

Round 2 - Technical 

(1 Question)

  • Q1. Technical roud was about Maps and how to represent maps in Python using 2D Array

Interview Preparation Tips

Interview preparation tips for other job seekers - Study DSA well like Arrays, Linked Lists, Maps, etc

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

it was time bound coding test round. The questions were from array and string. There were 2 questions.

  • Q1. 

    K-Palindrome Problem Statement

    Determine whether a given string str can be considered a K-Palindrome.

    A string is considered a K-Palindrome if it can be transformed into a palindrome after removing up to...

  • Ans. 

    The problem is to determine whether a given string can be considered a K-Palindrome by removing up to 'k' characters.

    • Iterate through the string from both ends and check if characters match, if not increment removal count

    • If removal count is less than or equal to k, return True, else return False

    • Use dynamic programming to optimize the solution by storing subproblem results

  • Answered by AI
Round 2 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

in this round manager spoke to me and explained about project and joining date later hr spoke to me regarding on boarding process

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in HyderabadEligibility criteriaNo criteriaUber interview preparation:Topics to prepare for the interview - Data structure ,Problem Solving ,Algorithms , Java , Spring Framework , Design QuestionsTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Practise Data structures mostly (Array, String and Tree) , practise as much questions as you can.
Tip 2 : Have Good knowledge of Tech Stack you mention in your resume
Tip 3 : Have good understanding of projects mentioned in your resume.

Application resume tips for other job seekers

Tip 1 : Resume should be having one page or maximum two pages long
Tip 2 : Mention your role on each project.

Final outcome of the interviewSelected

Skills evaluated in this interview

Uber Interview FAQs

How many rounds are there in Uber Software Engineer interview?
Uber interview process usually has 1-2 rounds. The most common rounds in the Uber interview process are Coding Test, Technical and One-on-one Round.
How to prepare for Uber 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 Uber. The most common topics and skills that interviewers at Uber expect are Python, Backend, Coding, Computer science and SQL.
What are the top questions asked in Uber Software Engineer interview?

Some of the top questions asked at the Uber Software Engineer interview -

  1. Given a 2d matrix with some D doors and W walls, we need fill distance matrix w...read more
  2. Given a read-only array we want to find kth smallest element in unordered array...read more
  3. Graph based question to find the shortest path between 2 prime numbers by chang...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 10 interview experiences

Difficulty level

Moderate 67%
Hard 33%

Duration

Less than 2 weeks 33%
2-4 weeks 67%
View more
Uber Software Engineer Salary
based on 236 salaries
₹36.2 L/yr - ₹67.5 L/yr
437% more than the average Software Engineer Salary in India
View more details

Uber Software Engineer Reviews and Ratings

based on 9 reviews

4.3/5

Rating in categories

4.6

Skill development

3.2

Work-life balance

4.8

Salary

2.6

Job security

3.3

Company culture

4.2

Promotions

3.2

Work satisfaction

Explore 9 Reviews and Ratings
Driver
596 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

CAR Driver
355 salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

Software Engineer
236 salaries
unlock blur

₹36.2 L/yr - ₹67.5 L/yr

Senior Software Engineer
184 salaries
unlock blur

₹51.1 L/yr - ₹95 L/yr

Data Analyst
161 salaries
unlock blur

₹10.5 L/yr - ₹19.4 L/yr

Explore more salaries
Compare Uber with

Amazon

4.0
Compare

Google

4.4
Compare

Ola Cabs

3.3
Compare

Airbnb

3.7
Compare
write
Share an Interview