Upload Button Icon Add office photos

Uber

Compare button icon Compare button icon Compare
4.2

based on 801 Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Uber Data Analyst Interview Questions and Answers

Updated 20 Jun 2024

Uber Data Analyst Interview Experiences

5 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 22 May 2024

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

Basic Apititude Questions

Round 2 - Technical 

(2 Questions)

  • Q1. Difference between WHERE and HAVING??
  • Ans. 

    WHERE is used to filter rows before grouping, HAVING is used to filter groups after grouping.

    • WHERE is used with SELECT statement to filter rows based on a condition

    • HAVING is used with GROUP BY statement to filter groups based on a condition

    • WHERE is applied before data is grouped, HAVING is applied after data is grouped

    • Example: SELECT * FROM table WHERE column = 'value'

    • Example: SELECT column, COUNT(*) FROM table GROUP B

  • Answered by AI
  • Q2. Where- Row Level Filters Having-Aggregate Filters
  • Ans. 

    Row level filters are applied before aggregations, while aggregate filters are applied after aggregations.

    • Row level filters are used to filter individual rows of data before any aggregations are performed.

    • Aggregate filters are used to filter the aggregated results after the data has been grouped and summarized.

    • Row level filters are typically applied using WHERE clause in SQL, while aggregate filters are applied using H...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why do you wanna join Uber?
  • Q2. Best Company Ever

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQL and Excel and Basic Python

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 20 Jun 2024

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

I applied via Approached by Company and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

It was basic MCQ related to Javascript

Round 2 - One-on-one 

(1 Question)

  • Q1. Asked basic questions related to array and SQL
Round 3 - HR 

(1 Question)

  • Q1. Asked question to test the business context

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 27 Aug 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed before Aug 2022. There were 3 interview rounds.

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 - Aptitude Test 

The aptitude questions were bit easy and there were questions about SQL, and also excel sheets.

Round 3 - Technical 

(1 Question)

  • Q1. Questions about sql

Interview Preparation Tips

Topics to prepare for Uber Data Analyst interview:
  • SQL
  • Excel
Interview preparation tips for other job seekers - Practice well for the interview and put best projects in resume

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 2 Feb 2024

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

I applied via LinkedIn and was interviewed before Feb 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Approx 30 questions which are to be solved in 1 hour. Questions include logical and mathematical questions along with basic ML and stats questions

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions related to Python and SQL
Round 3 - Technical 

(1 Question)

  • Q1. Advance SQL questions and 1 case study
Round 4 - Stakeholder Round 

(1 Question)

  • Q1. Basic ML questions and Business acumen questions

Uber interview questions for designations

 Senior Data Analyst

 (2)

 Data Analyst Intern

 (1)

 Junior Data Analyst

 (1)

 Analyst

 (1)

 Business Analyst

 (5)

 Service Analyst

 (1)

 Senior Analyst

 (1)

 MIS Analyst

 (1)

Data Analyst | Data Scientist interview

user image Frederik Müller

posted on 21 Dec 2021

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

GD COMMON TOPIC WAS DISCUSSED

Round 2 - One-on-one 

(1 Question)

  • Q1. TELL ABOUT YOURSELF , SKILLSETS YOU BRING TO THE TABLE
Round 3 - HR 

(1 Question)

  • Q1. EXPECTED INCOME , RELOCATION PREFERENCE

Interview Preparation Tips

Interview preparation tips for other job seekers - BE CONFIDENT
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2023. There were 4 interview rounds.

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 - Aptitude Test 

Number sires, clock, logic, arithmetic, geometry

Round 3 - Coding Test 

Code test basic, ans the basic knowledge, write code

Round 4 - Technical 

(5 Questions)

  • Q1. What is python?
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability.

    • Python is widely used for web development, data analysis, artificial intelligence, and scientific computing.

    • It emphasizes code readability and uses indentation to define code blocks.

    • Python has a large standard library and a vibrant community of developers.

    • Example: print('Hello, World!')

    • Example: import pandas as pd

  • Answered by AI
  • Q2. What is python used for?
  • Ans. 

    Python is a versatile programming language used for data analysis, web development, artificial intelligence, automation, and more.

    • Data analysis and visualization

    • Web development (Django, Flask)

    • Artificial intelligence and machine learning (TensorFlow, PyTorch)

    • Automation and scripting

    • Scientific computing (NumPy, SciPy)

  • Answered by AI
  • Q3. What type of language is python?
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability.

    • Python is an interpreted language, meaning it does not need to be compiled before running.

    • It supports multiple programming paradigms, including object-oriented, imperative, and functional programming.

    • Python has a large standard library and a thriving community, making it versatile and widely used.

    • Example: Python is used for web develop...

  • Answered by AI
  • Q4. What is oops in python?
  • Ans. 

    Object-oriented programming (OOP) is a programming paradigm based on the concept of 'objects', which can contain data and code.

    • OOP allows for the organization of code into reusable components called classes.

    • Classes can have attributes (variables) and methods (functions) associated with them.

    • In Python, everything is an object, and classes can be defined using the 'class' keyword.

    • Encapsulation, inheritance, and polymorph

  • Answered by AI
  • Q5. What is array in python?
  • Ans. 

    An array in Python is a data structure that stores a collection of elements of the same type.

    • Arrays can store elements such as integers, floats, or strings.

    • Arrays are indexed starting from 0, with elements accessed using their index.

    • Example: arr = ['apple', 'banana', 'cherry']

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Swiggy Data Analyst interview:
  • Advanced Excel
  • SQL Server
  • Python
Interview preparation tips for other job seekers - online interview

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Mar 2023. There were 2 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 - HR 

(2 Questions)

  • Q1. What’s your previous experience
  • Ans. 

    I have 3 years of experience as a data analyst in the finance industry.

    • Worked with large datasets to extract meaningful insights

    • Performed data cleaning, transformation, and visualization

    • Created and maintained dashboards and reports for stakeholders

    • Conducted statistical analysis and built predictive models

    • Collaborated with cross-functional teams to identify business opportunities

  • Answered by AI
  • Q2. What’s your skills for the current role
  • Ans. 

    I have strong skills in data analysis, including proficiency in statistical analysis, data visualization, and programming languages such as Python and SQL.

    • Proficient in statistical analysis techniques

    • Skilled in data visualization using tools like Tableau

    • Strong programming skills in Python and SQL

    • Experience with data cleaning and preprocessing

    • Ability to interpret and communicate insights from data

    • Familiarity with machin...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Udaan Data Analyst interview:
  • SQL
  • Python
Interview preparation tips for other job seekers - Good to have python and sql skills and for data analyst these skills are must plus one visualisation tool
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Fair and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Strenghts/weaknesses

Interview Preparation Tips

Interview preparation tips for other job seekers - ez
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. How well do you know excel?
Round 3 - One-on-one 

(2 Questions)

  • Q1. Resume based questions
  • Q2. General discussion about work

Uber Interview FAQs

How many rounds are there in Uber Data Analyst interview?
Uber interview process usually has 3-4 rounds. The most common rounds in the Uber interview process are Technical, Aptitude Test and HR.
How to prepare for Uber Data Analyst 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, SQL, Data Analysis, Data Visualization and Analytical.
What are the top questions asked in Uber Data Analyst interview?

Some of the top questions asked at the Uber Data Analyst interview -

  1. Where- Row Level Filters Having-Aggregate Filt...read more
  2. Difference between WHERE and HAVIN...read more
  3. Basic questions related to Python and ...read more

Tell us how to improve this page.

Uber Data Analyst Interview Process

based on 3 interviews in last 1 year

Interview experience

5
  
Excellent

People are getting interviews through

based on 3 Uber interviews
Job Portal
Campus Placement
33%
33%
34% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Data Analyst Interview Questions from Similar Companies

View all
Uber Data Analyst Salary
based on 129 salaries
₹6 L/yr - ₹21.7 L/yr
109% more than the average Data Analyst Salary in India
View more details

Uber Data Analyst Reviews and Ratings

based on 8 reviews

4.5/5

Rating in categories

3.2

Skill development

4.5

Work-Life balance

4.6

Salary & Benefits

4.7

Job Security

4.5

Company culture

3.9

Promotions/Appraisal

4.0

Work Satisfaction

Explore 8 Reviews and Ratings
Driver
565 salaries
unlock blur

₹1.1 L/yr - ₹7 L/yr

CAR Driver
394 salaries
unlock blur

₹0.9 L/yr - ₹7.5 L/yr

Software Engineer
156 salaries
unlock blur

₹21.8 L/yr - ₹86.7 L/yr

Operations Executive
141 salaries
unlock blur

₹1.6 L/yr - ₹3.8 L/yr

Data Analyst
129 salaries
unlock blur

₹6 L/yr - ₹21.8 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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview