Upload Button Icon Add office photos

Filter interviews by

Ola Cabs Interview Questions and Answers

Updated 5 Jul 2025
Popular Designations

88 Interview questions

A Sdet Lead was asked
Q. Projects done in relevant area
Ans. 

I have led multiple projects in test automation, performance testing, and CI/CD implementation.

  • Led a team in developing automated test scripts using Selenium for web applications

  • Implemented performance testing using JMeter to identify bottlenecks in the system

  • Set up CI/CD pipelines using Jenkins for continuous integration and deployment

  • Worked on integrating test automation with Docker containers for efficient test...

View all Sdet Lead interview questions
A Customer Support Manager was asked
Q. Customer facing issue
Ans. 

Customer facing issue

  • Listen actively to the customer's problem

  • Empathize with the customer

  • Offer a solution or escalate to a higher authority if necessary

View all Customer Support Manager interview questions
A Software Developer was asked
Q. 

Minimum Number Of Taps To Water Garden Problem Statement

You are required to determine the minimum number of taps that need to be opened to water an entire one-dimensional garden defined along the x-axis, ...

Ans. 

Find the minimum number of taps to water an entire garden along the x-axis.

  • Iterate over the taps and find the farthest point each tap can reach.

  • Sort the taps based on their starting points and use a greedy approach to select the taps.

  • Keep track of the farthest point reachable by the selected taps and the number of taps opened.

  • Return the minimum number of taps needed to water the entire garden or -1 if it's impossi...

View all Software Developer interview questions
A Software Developer was asked
Q. 

Count Leaf Nodes in a Binary Tree

Given a binary tree, your task is to count and return the number of leaf nodes present in it.

A binary tree is a data structure where each node has at most two children, ...

Ans. 

Count and return the number of leaf nodes in a binary tree.

  • Traverse the binary tree and count nodes with both left and right children as NULL.

  • Use recursion to traverse the tree efficiently.

  • Leaf nodes have no children, so check for NULL left and right children to identify them.

View all Software Developer interview questions

What people are saying about Ola Cabs

View All
a digital marketer
4d
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 Ola Cabs?
Ask anonymously on communities.
A Software Developer was asked
Q. 

Diagonal Traversal of a Binary Tree Problem Statement

Given a binary tree, your task is to determine the diagonal traversal of the tree.

Example:

Input:
1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1
Output:
1...
Ans. 

Diagonal traversal of a binary tree involves traversing nodes diagonally from top to bottom and left to right.

  • Traverse the tree level by level, starting from the root node.

  • For each level, keep track of the diagonal nodes and their children.

  • Use a queue to store nodes at each level and traverse them accordingly.

  • Example: For input 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1, the diagonal traversal is 1 3 6 2 5 4 7.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Number of Islands Problem Statement

You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in th...

Ans. 

Count the number of islands in a 2D matrix of 1s and 0s.

  • Use Depth First Search (DFS) or Breadth First Search (BFS) to traverse the matrix and identify connected groups of 1s.

  • Maintain a visited array to keep track of visited cells to avoid redundant traversal.

  • Increment the island count each time a new island is encountered.

  • Consider all eight possible directions for connectivity while traversing the matrix.

  • Handle ed...

View all Software Developer interview questions
A Software Developer was asked
Q. Can you describe the system design of the OLA app?
Ans. 

OLA app system design involves multiple components like user interface, driver matching algorithm, payment processing, etc.

  • User interface for booking rides and tracking

  • Driver matching algorithm based on location and availability

  • Payment processing for seamless transactions

  • Real-time tracking of rides for both users and drivers

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. 

Missing Numbers Problem Statement

You are provided with an array called ARR, consisting of distinct positive integers. Your task is to identify all the numbers that fall within the range of the smallest an...

Ans. 

Identify missing numbers within the range of smallest and largest elements in an array.

  • Find the smallest and largest elements in the array.

  • Generate a list of numbers within this range.

  • Filter out the numbers present in the array.

  • Return the missing numbers in sorted order.

View all Software Developer interview questions
A SDE-2 was asked
Q. Can you explain the different types of joins in SQL and how to calculate the average of all values from a given table?
Ans. 

Different types of joins in SQL and calculating average of values from a table.

  • Types of joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL JOIN

  • To calculate average: Use AVG() function in SQL

  • Example: SELECT AVG(column_name) FROM table_name

View all SDE-2 interview questions
A SDE-2 was asked
Q. 

Job Sequencing Problem Statement

You are provided with a N x 2 2-D array called Jobs consisting of N jobs. In this array, Jobs[i][0] represents the deadline of the i-th job, while Jobs[i][1] indicates the ...

Ans. 

Maximize profit by scheduling jobs within their deadlines.

  • Sort the jobs based on their profits in descending order.

  • Iterate through the sorted jobs and schedule them based on their deadlines.

  • Keep track of the maximum profit achievable by scheduling jobs within their deadlines.

View all SDE-2 interview questions

Ola Cabs Interview Experiences

146 interviews found

Lead DBA Interview Questions & Answers

user image Anonymous

posted on 16 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(1 Question)

  • Q1. Data base upgrades, migration, cost optimisation , moderation, data security, backups and restore, DR
Round 2 - Technical 

(1 Question)

  • Q1. Datbase related
Round 3 - HR 

(1 Question)

  • Q1. Basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - New joiners best for learning but not expect for work life balances and growth part.
No additional work allowances , comp-ff , cab service and food etc.

Store Manager Interview Questions & Answers

user image Priyanshu Bhargava

posted on 5 Jul 2025

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

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Salary package work profile
  • Q2. Witch location work

Interview Preparation Tips

Interview preparation tips for other job seekers - So nyc job
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Closure
  • Ans. 

    Closure is a function that captures the environment in which it was created, allowing it to access variables from that environment even after the function has finished executing.

    • Closure allows a function to access variables from its outer scope even after the function has finished executing.

    • It is created when a function is defined within another function and the inner function references variables from the outer functi...

  • Answered by AI
  • Q2. Flat nested array
Round 2 - Technical 

(2 Questions)

  • Q1. Machine coding questions
  • Q2. Das based questions
Round 3 - HR 

(2 Questions)

  • Q1. Simple questions
  • Q2. Simple questions one on one

Interview Questions & Answers

user image Anonymous

posted on 3 Mar 2025

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

I appeared for an interview in Feb 2025.

Round 1 - Case Study 

A case study on business emphasizes that without customers, a business cannot thrive; therefore, I regard customers as paramount and strive to give my best for them. From the beginning of your interaction, always greet customers warmly, whether it's with "good morning," "good afternoon," or "good evening." At the conclusion of the trip, offer a genuine smile and say something meaningful. Customer satisfaction and trust in Ola will foster a strong bond with the Ola cab service.

Round 2 - Assignment 

Discussing money-making strategies and Ola's policies.

Interview Preparation Tips

Interview preparation tips for other job seekers - Honesty and safe driving should be treated with the same care and consideration we give to our family members.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Coding Test 

6 sections were there- AI/ML, SQL, Python, R, Statistics & Probability, and 2 coding questions

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Brief about yourself
  • Ans. 

    Finance professional with 5 years of experience in budgeting, forecasting, and financial analysis, dedicated to driving business growth.

    • 5 years of experience in finance, specializing in budgeting and forecasting.

    • Successfully managed a budget of $2 million for a mid-sized company, improving cost efficiency by 15%.

    • Proficient in financial modeling and analysis, using tools like Excel and SAP.

    • Strong analytical skills, demo...

  • Answered by AI
  • Q2. How we make cash flow of a company having continued and discontinued operations
  • Ans. 

    Cash flow of a company with continued and discontinued operations is calculated by combining cash flows from both segments.

    • Combine cash flows from both continued and discontinued operations to get total cash flow

    • Consider any one-time gains or losses from discontinued operations separately

    • Analyze the impact of discontinued operations on overall cash flow

    • Ensure accurate reporting of cash flows from both segments in finan...

  • Answered by AI
  • Q3. Questions on leases as per IAS

Interview Preparation Tips

Topics to prepare for Ola Cabs Assistant Manager Finance interview:
  • CARO
  • INDAS
  • Cash Flow Management
  • Cash Flow Statement
  • Leases
  • Financial Accounting
  • Analytical skills
Interview preparation tips for other job seekers - Brush up your Financial Reporting concepts and around your current experience.
Interview experience
3
Average
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Aug 2024.

Round 1 - Aptitude Test 

Is possible to get your stolen funds back with the help of Oliver

Round 2 - Technical 

(1 Question)

  • Q1. Ambitionbox.com I really invested a lot I was expecting last huge amount of money but definitely i lost everything I have invested and I was battling with depression and frustrated

Interview Preparation Tips

Interview preparation tips for other job seekers - You can get your money back with the help of recovery services team that’ help me out financially and good work to believe I get my stolen coins back you can reach her on Olivercompanyexpert 505 (AT) g mail c om she can also help you recover whatever you have lost in crypto

Cabin Supervisor Interview Questions & Answers

user image Hardik Deswal

posted on 4 Apr 2025

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Driving licence
  • Q2. Driving skills , car management
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Based on linked list
Round 2 - Technical 

(1 Question)

  • Q1. Based in tree Data Structure
Round 3 - Technical 

(1 Question)

  • Q1. Based on the graph and one from aptitude

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium-level DSA questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What apps do you use
  • Ans. 

    I use a variety of apps for research, data analysis, and communication.

    • Microsoft Excel for data analysis

    • Google Scholar for research articles

    • Slack for team communication

  • Answered by AI
  • Q2. What methods of research are you familiar with
  • Ans. 

    I am familiar with various research methods including qualitative, quantitative, experimental, and survey research.

    • Qualitative research involves collecting non-numerical data such as interviews, observations, and focus groups.

    • Quantitative research focuses on numerical data and statistical analysis to draw conclusions.

    • Experimental research involves manipulating variables to test cause-and-effect relationships.

    • Survey res...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hardworking

Ola Cabs Interview FAQs

How many rounds are there in Ola Cabs interview?
Ola Cabs interview process usually has 2-3 rounds. The most common rounds in the Ola Cabs interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Ola Cabs 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 Ola Cabs. The most common topics and skills that interviewers at Ola Cabs expect are Python, Computer science, Automotive, MySQL and Financial Services.
What are the top questions asked in Ola Cabs interview?

Some of the top questions asked at the Ola Cabs interview -

  1. Case study- Ola has completed 2 years of operations at Jaipur without any compe...read more
  2. What is WACC? How do value a company? Suggest a method that can help you decide...read more
  3. Q.1.) Which data analysis tools/software have you used before? Be thorough with...read more
What are the most common questions asked in Ola Cabs HR round?

The most common HR questions asked in Ola Cabs interview are -

  1. Tell me about yourse...read more
  2. Why are you looking for a chan...read more
  3. What are your salary expectatio...read more
How long is the Ola Cabs interview process?

The duration of Ola Cabs interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 106 interview experiences

Difficulty level

Easy 33%
Moderate 60%
Hard 7%

Duration

Less than 2 weeks 80%
2-4 weeks 9%
4-6 weeks 7%
6-8 weeks 2%
More than 8 weeks 2%
View more

Interview Questions from Similar Companies

Flipkart Interview Questions
3.9
 • 1.5k Interviews
Swiggy Interview Questions
3.7
 • 475 Interviews
Lenskart Interview Questions
3.2
 • 364 Interviews
CARS24 Interview Questions
3.5
 • 361 Interviews
JustDial Interview Questions
3.5
 • 359 Interviews
Info Edge Interview Questions
3.9
 • 348 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Eternal Limited Interview Questions
3.7
 • 327 Interviews
Zepto Interview Questions
3.5
 • 296 Interviews
View all

Ola Cabs Reviews and Ratings

based on 2k reviews

3.3/5

Rating in categories

3.3

Skill development

3.1

Work-life balance

3.5

Salary

2.7

Job security

3.0

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 2k Reviews and Ratings
Driver
762 salaries
unlock blur

₹2 L/yr - ₹6.3 L/yr

CAR Driver
441 salaries
unlock blur

₹1.8 L/yr - ₹5.3 L/yr

Assistant Manager
280 salaries
unlock blur

₹8.7 L/yr - ₹15.2 L/yr

Team Lead
197 salaries
unlock blur

₹2.3 L/yr - ₹7 L/yr

Business Analyst
194 salaries
unlock blur

₹10 L/yr - ₹17.6 L/yr

Explore more salaries
Compare Ola Cabs with

Uber

4.2
Compare

Meru cabs

3.8
Compare

Flipkart

3.9
Compare

Indiamart Intermesh

3.6
Compare
write
Share an Interview