Upload Button Icon Add office photos

Uber

Compare button icon Compare button icon Compare
4.2

based on 804 Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Uber Software Engineer Interview Questions, Process, and Tips

Updated 16 Oct 2024

Top Uber Software Engineer Interview Questions and Answers

  • Q1. K-Palindrome You are given a string ‘str’. You need to find out whether the string is a K-Palindrome or not. A string is called a K-Palindrome if, after removing at most ...read more
  • Q2. Boolean Matrix Given a 2-dimensional boolean matrix mat of size N x M, modify the matrix such that if an element is 1, set its entire row and column to 1 i.e. if mat[i][j ...read more
  • Q3. Kth Largest Element in an Array You are given an array consisting of 'N' distinct positive integers and a number 'K'. Your task is to find the kth largest element in the ...read more
View all 11 questions

Uber Software Engineer Interview Experiences

16 interviews found

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 17 May 2022

I was interviewed before May 2021.

Round 1 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. K-th node from the end of the linked list

    Given the head node of the singly linked list and an integer ‘k’, , find the value at the kth node from the end of the linked list.

    For example:

    For the above-...

  • Ans. 

    Explained the approach by using 2 traversals - First to find the length of list and then to delete the node.

    Also, discussed an approach to do it in one traversal.

  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

High level System Design

  • Q1. System Design Question

    Design Uber

  • Ans. 

    Tip 1 : Study system design in depth
    Tip 2 : Be familiar how to scale your design
    Tip 3 : Be familiar with concepts like single point of failure

  • Answered by CodingNinjas
Round 3 - HR 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

Basic HR questions

  • Q1. Basic HR questions

    Why you want to join Uber
    What are your expectations from Uber

  • Ans. 

    Tip 1 : Show the HR that you are really interested in Uber
    Tip 2 : Study about the company
    Tip 3 : Try to negotiate

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in HyderabadEligibility criteriaAbove 7 CgpaUber interview preparation:Topics to prepare for the interview - Data Structures, React JS, JavaScript, DBMS, AlgorithmsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practise DSA/coding consistently
Tip 2 : Choose a tech stack and Make side hobby projects
Tip 3 : Give mock interviews for your preparation evaluation

Application resume tips for other job seekers

Tip 1 : Pointers about your current job responsibility
Tip 2 : Side Projects with Tech stack

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 17 May 2022

I was interviewed before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Easy

It was a mix of mathematical aptitude, logical ability, and puzzles along with 2 programming questions of easy and medium levels. Time was enough and no sectional time was present. 1-2 MCQs on SQL was also present.

  • Q1. Boolean Matrix

    Given a 2-dimensional boolean matrix mat of size N x M, modify the matrix such that if an element is 1, set its entire row and column to 1 i.e. if mat[i][j] = 1, then make all the elements o...

  • Ans. 

    You need to make the modifications in the input matrix.
    You do not need to print anything, it has already been taken care of.

  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

It was an online video interview round on HackerEarth with a simultaneous code option. It was mostly justifying your resume in the first 15 minutes. After that OOPS was majorly asked. Basics of programming including questions on STL were asked. A class that required inheritance was asked by the interviewer to write. I was helped by the interviewer if I got stuck somewhere, Some questions on the implementation of hashmaps and priority queues were also asked. A puzzle was asked which luckily struct to me at that moment.

  • Q1. Connect n ropes with minimum cost

    You have been given 'N' ropes of different lengths, we need to connect these ropes into one rope. The cost to connect two ropes is equal to sum of their lengths. We need to...

  • Ans. 

    Input format :
    The first line of input contains an integer value 'N'. It denotes the total number of ropes.

    The second line of input contains 'N' single space-separated integers representing the length of each rope i.e. a1, a2, a3, ... an.
    Output Format :
    The only line of output will contain an integer, the minimum cost for connecting all the ropes.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in HyderabadEligibility criteriaAbove 7 CGPAUber interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, Aptitude , Programming Language.Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Clear basics
Tip 2 : Prepare well
Tip 3 : Do at-least 2 projects

Application resume tips for other job seekers

Tip 1 : Write only those things in resume in which you are 100% confident
Tip 2 : Write maximum projects you have and be ready to explain them thoroughly

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

I was interviewed before Apr 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

It started with an informal talk after he gave his introduction. We talked about the cyclone that was going to be there and what I did in my internship and my previous projects. Then we moved to questions. After solving both questions he asked if I had questions.

  • Q1. Kth Largest Element in an Array

    You are given an array consisting of 'N' distinct positive integers and a number 'K'. Your task is to find the kth largest element in the array.

    Example:
    C...
  • Ans. 

    To solve the question using a max heap, make a max heap of all the elements of the list. Run a loop for k-1 times and remove the top element of the heap. After running the loop, the element at top will be the kth largest element, return that. Time Complexity : O(n + klogn)


    The question can also be solved using a min heap. 
     

    Approach :
     

    1. Create a min heap class with a capacity of k
     

    2. When the heap re...

  • Answered by CodingNinjas
  • Q2. Minimum time required to rot all oranges

    You have been given a grid containing some oranges. Each cell of this grid has one of the three integers values:

  • Value 0 - representing an empty cell.
  • Value...
  • Ans. 

    BFS can be used here. 
    Algorithm : 


    1. Create an empty queue Q. 
     

    2. Find all rotten oranges and enqueue them to Q. Also, enqueue a delimiter to indicate the beginning of the next time frame.
     

    3. Run a loop While Q is not empty
     

    4. Do following while delimiter in Q is not reached
    4.1. Dequeue an orange from the queue, rot all adjacent oranges. While rotting the adjacent, make sure that the time ...

  • Answered by CodingNinjas
Round 2 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

This was a design round.

  • Q1. System Design Question

    How to stream an image such that all clients see the same image at the same time? You need to take care of delays, network problems. He kept on adding new elements like compression, s...

  • Ans. 

    Tip 1 : Firstly, remember that the system design round is extremely open-ended and there’s no such thing as a standard answer. Even for the same question, you’ll have a totally different discussion with different interviewers.

    Tip 2 : Before you jump into the solution always clarify all the assumptions you’re making at the beginning of the interview. Ask questions to identify the scope of the system. This will clear the...

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 8 CGPAUber interview preparation:Topics to prepare for the interview - Design, Algorithms And Data Structures, Graph Theory, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via campus placement at Indian Institute of Technology (IIT), Chennai and was interviewed in Dec 2016. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Given a 2d matrix with some D doors and W walls, we need fill distance matrix with 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

  • Answered by AI
  • Q2. Given a read-only array we want to find kth smallest element in unordered array with O(1) space
  • 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

  • Answered by AI
  • Q3. Design question
  • Q4. Find friends of friend who already are not friends with you

Interview Preparation Tips

Round: Technical Interview
Experience: It started with an informal talk after he gave his introduction. We talked about the cyclone that was going to be there and what I did in my internship and my previous projects. Then we moved to questions. After solving both questions he asked if I had questions.
Tips: Just walk the interviewer through the solution you're proposing.

Round: Other Interview
Experience: He started with a design question with how to stream an image such that all clients see the same image at the same time. You need to take care of delays, network problems. He kept on adding new elements like compression, streaming, utc time related issues, client rendering delays and so on.

Round: Other Interview
Experience: This was bar-raiser round.

Skills: Design, Algorithms And Data Structures, Graph Theory
College Name: IIT Madras

Skills evaluated in this interview

Uber interview questions for designations

 Senior Software Engineer

 (7)

 Software Engineer Intern

 (3)

 Principal Software Engineer

 (1)

 Staff Software Engineer

 (1)

 Software Development Engineer II

 (3)

 Software Developer

 (8)

 Software Engineer2

 (1)

 Software Developer Intern

 (5)

Software Engineer interview

user image Outco

posted on 21 Dec 2021

Get interview-ready with Top Uber Interview Questions

Software Engineer interview

user image kavit techie

posted on 1 Dec 2021

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 Backend, Python, 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. Build Netflix architect...read more

Tell us how to improve this page.

Uber Software Engineer Interview Process

based on 7 interviews in last 1 year

1 Interview rounds

  • Coding Test Round
View more
Uber Software Engineer Salary
based on 157 salaries
₹20 L/yr - ₹84.7 L/yr
494% more than the average Software Engineer Salary in India
View more details

Uber Software Engineer Reviews and Ratings

based on 8 reviews

4.4/5

Rating in categories

4.4

Skill development

4.1

Work-life balance

4.7

Salary

3.4

Job security

4.4

Company culture

3.8

Promotions

3.8

Work satisfaction

Explore 8 Reviews and Ratings
Driver
581 salaries
unlock blur

₹1 L/yr - ₹7 L/yr

CAR Driver
367 salaries
unlock blur

₹1 L/yr - ₹7.5 L/yr

Software Engineer
157 salaries
unlock blur

₹20 L/yr - ₹84.7 L/yr

Operations Executive
138 salaries
unlock blur

₹1.6 L/yr - ₹3.8 L/yr

Data Analyst
128 salaries
unlock blur

₹5 L/yr - ₹21 L/yr

Explore more salaries
Compare Uber with

Amazon

4.1
Compare

Google

4.4
Compare

Ola Cabs

3.4
Compare

Airbnb

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview