Uber OA Questions 2024: What Candidates Actually Saw

Last updated: May 2026

29+ Uber online assessment questions reported by candidates who took the OA in 2024. Sourced from 1Point3Acres, LeetCode, Blind, Glassdoor, and Reddit. Data grows as new reports are added.

Uber OA Format in 2024

The Uber online assessment has followed a consistent format across multiple hiring cycles. Based on 2024 reports in the database, candidates typically see 2 to 3 algorithmic coding problems delivered through a proctored online platform (most commonly HackerRank). Some roles include additional behavioral or work-simulation components after the coding section.

Time limits reported by candidates range from 70 to 110 minutes for the full assessment. The coding problems are auto-graded, so edge case handling and runtime efficiency both matter. Partial credit is available on some platforms if your solution passes a subset of test cases.

Real Uber OA Questions from 2024

Uber OA

math leetcode

You have N ranges where the i-th range is from low[i] to high[i]. You need to create an array brr of length N. However, brr[i] can only be any prime number...

View

Uber OA

arrays leetcode

Given array arr of length n, \uFEFFwe define function f(arr) \uFEFFas- if n=1, f(arr) = \uFEFFarr[0]; else, \uFEFFf(arr) = \uFEFFf(arr[0] ^ \uFEFFarr[1], \uFEFFarr[1] ^ \uFEFFarr[2]...., \uFEFFarr[n-2] ^ \uFEFFarr[n-1]) where ^ \uFEFFis...

View

Uber OA

graph leetcode

Given an undirected graph graph that is represented by its adjacency matrix, return whether or not is it possible to add no more than two edges to this graph in...

View

Uber OA

arrays leetcode

have an array , we have to make it a incresing stair step or decresing stair step by adding to it find the minimum number to be added to all,...

View

Uber OA

math leetcode

You have N ranges where the i-th range is from low[i] to high[i]. You need to create an array brr of length N. However, brr[i] can only be any prime number...

View

UBER OA

graph leetcode

Nearly all of the Kingdom of Byteland is covered by forests and rivers. Small rivers meet to form bigger rivers, which also meet and, in the end, all the rivers...

View

Uber | Software Engineer 1 (L3) | Bengaluru, India | Sept 2024 [Offer]

interview-experience leetcode

Status: New grad (2024 batch) Position: Software Engineer 1 Location: Bengaluru, India Date: September 20, 2024 Online Assessment There were 4 questions in total. All four of the questions can be found here. Problem Solving Round...

View

Uber OA - Senior Software Engineer

arrays leetcode

Here are questions from my Uber OA. 4 total questions , 1 hr 10 min total time. Question 1 : Given an input array -arr[],divide the elements in to two different...

View

Uber OA Question

strings leetcode

Hi all, Was curious if anybody could assist me in understanding an optimal solution to this question. Decided to try Trie implemenation but was timing out on larger test cases. Thanks! Given...

View

Uber Online Assessment questions(for 2 months intern)

arrays leetcode

Problem Statement-1 A sequence is considered harmonious if it can be divided into a series of groups, and each group starts with a number that indicates the number of items in...

View

UBER OA Graph Qn for SDE Intern

graph leetcode

Hey everyone, any help with the following graph qn is very much appreciated. Problem Statement: Uber is introducing a new flight service between n countries with n-1 flight routes connecting them. All...

View

Uber SDE 2 Android Interview Detailed Experience: No Offer

hard interview-experience leetcode

I was approached by HR on LinkedIn and was given an online HackerRank test. Online Screening Test: Basic Android MCQ questions DS & Algo question: 2Sum Screening Interview Round: After clearing the online test, I...

View

Uber OA | Number Theory Problem

math leetcode

The question that was asked was: Given three integers p, q, and r. Determine the value of (p^(q!)) mod r. Can anyone help me solve this? Thanks!

View

Uber Interview Experience For Data Scientist

medium binary search gfg

Recently Uber came to our campus for the recruitment of Data Scientist role. According to the recruitment process there were in total 5 rounds. Each round was an eliminati...

View

Uber | SDE-2 | Offer | Bangalore

easy interview-experience leetcode

YOE : 2.6 years Current Organization : Ecommerce MNC Current Title - SDE-1 Preliminary Round - Online Coding round on Codility. 4 questions - 1 easy 2 medium 1 hard. Cutoff - 60% . Recruiter...

View

Uber | SDE2(L4) | Bangalore | June 2024 [Accepted]

easy interview-experience leetcode

Hi, Status: Bachelors from Tier 2 College Current Position: SDE2 (4 exp.) at MNC Fintech Location: Bangalore, India Date: June 2024 I applied through a recruiter on LinkedIn. I was already serving a notice period...

View

Uber | SDE 2 | Bangalore | July 2024 [Offer]

easy interview-experience leetcode

Status: 3 YOE, CS from Tier 1\1.5 Position: SDE II at seed-stage start-up Location: Bangalore Date: July, 2024 ### Interview OA. If cut-off score met, a TPS is scheduled. If that is cleared, four on-site...

View

Uber Hiring Drive | SDE2 | Bangalore

interview-experience leetcode

I attended onsite interview last weekend. OA: Gave 3 weeks Back. 4 qstns/ 70 mins. Solved 3 + 1 partially. 556/600 after normalization. Got an invite for onsite event. All the...

View

Nutanix | MTS1 | July 2024 | Bangalore [Reject]

easy interview-experience leetcode

Interviewed for the position of MTS-1 at Nutanix. Status: 1 YOE as SDE at an established start-up, BTech CS from decent uni Position: MTS1 at Nutanix Location: Bangalore Date: July 2024 Applied online and recieved...

View

Uber Winter Intern Offer 2025

hard interview-experience leetcode

Education: BTech in CSE from Tier-2 College Years of Experience: 0 Batch : 2025 Internship Duration : Jan - July 2025 Prior Experience: Interned at Product Based Company Date of the Offer: November 2024 Company: Uber Title/Level:...

View

Topic Breakdown (2024 OA)

Topics reported by candidates who took the Uber OA in 2024:

arrays (6) math (3) graph (3) strings (1) design (1) binary search (1)

Difficulty Breakdown (2024 OA)

7

easy

3

medium

2

hard

Difficulty labels are reported by candidates or inferred from LeetCode ratings.

How to Prepare for the Uber OA

The Uber OA is a timed, auto-graded coding test. Preparation is different from interview prep: you need to optimize for both correctness and speed, since partial credit requires passing test cases, not just showing reasoning.

  • Practice timed sessions. Set a timer for 35 to 45 minutes per problem and simulate the real constraint.
  • Focus on the topic clusters that appear most in Uber OA reports: dynamic programming, graphs, arrays, and strings make up the majority of reported problems.
  • Read the problem constraints carefully before writing code. The constraints often reveal the expected time complexity and algorithm type.
  • Use the LeakCode database to review 2024 OA questions from actual candidates. Pattern recognition across multiple sightings is a stronger prep signal than any single mock problem.
  • If the OA includes a work simulation section, practice under realistic conditions. This section tests judgment and values alignment, not coding ability.

FAQ

What does the Uber OA look like in 2024?

Based on 2024 candidate reports, the Uber OA typically includes 2 to 3 coding problems and runs 70 to 110 minutes. Topics lean toward dynamic programming, graphs, arrays, and strings. Some roles include a work simulation section after the coding component.

How long is the Uber OA?

Most candidates report 70 to 90 minutes for the coding component. Roles with additional work simulation sections extend the total time to 110 to 150 minutes. Check your invitation email for the exact time allocation for your specific role.

What platform does Uber use for the OA?

Uber uses HackerRank or its own proprietary platform depending on the role and hiring cycle. Your invitation will specify the platform. Both platforms support multiple languages including Python, Java, C++, and JavaScript.

Are these real Uber OA questions?

Yes. All questions in the LeakCode database come from candidate reports on 1Point3Acres, Blind, Glassdoor, Reddit, and LeetCode. They are not AI-generated. Each question links to its source where available.

Other Uber OA Years

Related: Uber OA Hub · Uber All Questions · All OA Questions · Data Sources