Upload Button Icon Add office photos

Ola Cabs

Compare button icon Compare button icon Compare

Filter interviews by

Ola Cabs Interview Questions, Process, and Tips

Updated 16 Feb 2025

Top Ola Cabs Interview Questions and Answers

View all 95 questions

Ola Cabs Interview Experiences

Popular Designations

137 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
No response

I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Coding Test 

3 easy-medium dsa questions and 1 hour

Round 2 - Technical 

(1 Question)

  • Q1. Question related to tree traversal

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Online test depends upon aptitude, verbal communication

Round 2 - Group Discussion 

General knowledge topics

Round 3 - Technical 

(1 Question)

  • Q1. Telephonic round
Round 4 - One-on-one 

(1 Question)

  • Q1. Self introduction, general topics

Interview Preparation Tips

Interview preparation tips for other job seekers - Best place to work

Customer Support Executive Interview Questions asked at other Companies

Q1. Understanding customer problems,whT i know about BPO nd how they work,how i will handle a difficult nd angry customer,i can satisfied my client.
View answer (21)

I applied via Naukri.com

Round 1 - Technical 

(1 Question)

  • Q1. Rotation of a string k times with a complexity of k
  • Ans. 

    Rotation of a string k times with a complexity of k

    • Use string slicing to split the string into two parts and swap them k times

    • Complexity will be O(k) as we are swapping only k times

    • Example: 'hello' rotated 2 times becomes 'llohe'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The offer release will take ages. Only the interview process is fast and they might pull you for f2f for one of the rounds.

Skills evaluated in this interview

Senior QA Engineer Interview Questions asked at other Companies

Q1. Combination Sum Problem Statement Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be chosen multiple times from ARR. Ensur... read more
Add answer
Round 1 - Technical 

(1 Question)

  • Q1. Explain JVM architecture and Tuning options
  • Ans. 

    JVM is the virtual machine that executes Java bytecode. It has various components and tuning options to optimize performance.

    • JVM consists of class loader, memory management, bytecode verifier, and execution engine

    • Tuning options include heap size, garbage collection algorithm, and thread stack size

    • JVM performance can be improved by optimizing code, reducing object creation, and using appropriate data structures

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hiring Managers round is required to improve.

Skills evaluated in this interview

Senior Performance Engineer Interview Questions asked at other Companies

Q1. Explain JVM architecture and Tuning options
View answer (1)

Ola Cabs interview questions for popular designations

 Business Analyst

 (9)

 Management Trainee

 (7)

 Software Developer

 (5)

 Analyst

 (4)

 Assistant Manager Finance

 (4)

 Software Engineer

 (4)

 Customer Support Executive

 (3)

 SDE-2

 (3)

Shift Manager Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2022

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

(3 Questions)

  • Q1. What are your family background
  • Ans. 

    In my family there is mother and father and one big brother and three big sisters. and my wife and my daughter

  • Answered Anonymously
  • Q2. Last per work location and position
  • Ans. 

    my last job shift manager in ola grocery store

  • Answered Anonymously
  • Q3. And store general knowledge questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Very nice job and i really enjoyed doing this job And I used to work 12 hairs instead of 9 hairs with my own pleasure

Shift Manager Interview Questions asked at other Companies

Q1. What opportunities you see in a QSR industry?
View answer (20)

Get interview-ready with Top Ola Cabs Interview Questions

Field Executive Interview Questions & Answers

user image Mangesh Niras

posted on 17 Mar 2022

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 - One-on-one 

(2 Questions)

  • Q1. Introduction , and normal discuss , perviuos job exprence
  • Q2. Knowladge of marketing works for other company and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Just apply if you are good then you will get the job

Field Executive Interview Questions asked at other Companies

Q1. What is Injury On Nitrogen leak?
View answer (12)

Jobs at Ola Cabs

View all

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 17 May 2022

I was interviewed in Jul 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It was a problem solving round where a hackerrank link was given containing 2 questions.
You have to solve them within 90 minutes.
I was asked to solve it within a week.

  • Q1. 

    Find Distinct Palindromic Substrings

    Given a string 'S', identify and print all distinct palindromic substrings within it. A palindrome reads the same forwards and backwards. For example, 'bccb' is a pali...

  • Ans. 

    Step 1 : Find all the palindromic sub-strings
    Step 2 : Remove duplicate palindromes
    Step 3 : Print the distinct palindromes and number of such palindromes

  • Answered Anonymously
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

2 questions was asked by the interviewer. You have to clearly explain your approach and write a working solution. He even asked me to run on some additional test cases

  • Q1. 

    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. 

    Sort the jobs based on their deadlines.
    Iterate from the end and calculate the available slots between every two consecutive deadlines. Include the profit, deadline, and job ID of ith job in the max heap.
    While the slots are available and there are jobs left in the max heap, include the job ID with maximum profit and deadline in the result.
    Sort the result array based on their deadlines.

  • Answered Anonymously
  • Q2. 

    Partition Equal Subset Sum Problem

    Given an array ARR consisting of 'N' positive integers, determine if it is possible to partition the array into two subsets such that the sum of the elements in both sub...

  • Ans. 

    Let isSubsetSum(arr, n, sum/2) be the function that returns true if 
    there is a subset of arr[0..n-1] with sum equal to sum/2

    The isSubsetSum problem can be divided into two subproblems
    a) isSubsetSum() without considering last element 
    (reducing n to n-1)
    b) isSubsetSum considering the last element 
    (reducing sum/2 by arr[n-1] and n to n-1)
    If any of the above subproblems return true, then return true. 
    is...

  • Answered Anonymously
Round 3 - Face to Face 

Round duration - 60 minutes
Round difficulty - Easy

I was asked 1 system design question. The question was to design an online multiplayer game which can be scaled for more than 10 million users. 
The interviewer helped me to collect requirement and also helped me in choosing different low latency protocol to communicate between client and server.

Round 4 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The interviewer asked few sql based questions and asked me to write the solution.
He also gave 1 problem solving question.

  • Q1. Can you explain the different types of joins in SQL and how to calculate the average of all values from a given table?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BangaloreEligibility criteriaNAOla interview preparation:Topics to prepare for the interview - Linked List, Stacks, Queues, Tree, Graph, System Design, Dynamic Programming.Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare Data Structures topic by topic and also solve at least 10 interview questions from each topic. The have a list of excellent questions. 
Tip 2 : For system design try to take few questions by yourself and think of what different scenarios can arise considering it as a distributed system. There are multiple topics like Consistent Hashing, Partition tolerance, Availability, Sharing etc which needs special attention. The interviewers will dig them deep and will try to see how much of it you actually understand. 
Tip 3 : Also please do focus on LLD. Sometimes they can ask you to write sample code for problems. Try solving 4-5 problems. 
Tip 4 : You should do and prepare properly 2 -3 projects and try deploying it. You will face a lot of new challenges which you do not face in normal day to day usage.

Application resume tips for other job seekers

Tip 1 : You can go for 1 page resume, though it is not necessary. Mention about your projects, your actual contribution, languages that you have used in that project etc. 
Tip 2 : You should always put your academic achievements. Sometimes it gains interviewers attention. 
Tip 3 : Make it a little bit colourful rather than plain white.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Ola Cabs SDE-2 Interview Questions and Answers

Q1. Job Sequencing ProblemYou are given a N x 2 2-D array 'Jobs' of 'N' jobs where Jobs[i][0] denote the deadline of i-th job and Jobs[i][1] denotes the profit associated with i-th job. You will make a certain profit if you complete the job wit... read more
View answer (3)

SDE-2 Interview Questions asked at other Companies

Q1. Maximum Frequency NumberNinja is given an array of integers that contain numbers in random order. He needs to write a program to find and return the number which occurs the maximum times in the given input. He needs your help to solve this ... read more
View answer (6)
Round 1 - One-on-one 

(1 Question)

  • Q1. About used cars sales
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion and

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go to work ..time waste..go and look good one

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are the two factors that differentiate you from the other trainers.
  • Q2. What do you bring to the table which you are absolutly confident about and you can nail it here in the new field?

Interview Preparation Tips

Topics to prepare for Ola Cabs Soft Skills Trainer interview:
  • Behavioral Training
  • Soft Skills Training
  • Public Speaking
Interview preparation tips for other job seekers - 1. Be abosolutly confident in your abilities and knowledge.
2. Do a research about the company you are applying for like the businesses they handle, the verticals, the top leadership, P&L for last year, founders and share holding of the company etc.
3. Talk about the efficacy of your work that has impacted your current company in a broad amd positive way.

Soft Skills Trainer Interview Questions asked at other Companies

Q1. What is the Communication rule? Who developed the rule?
View answer (2)

I was interviewed in May 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was coding round and was conducted on Google meet with code link shared. Their were 2 interviewers that gave questions and later ran code on sample test cases.

  • Q1. 

    Problem: Permutations of a String

    Given a string STR consisting of lowercase English letters, your task is to return all permutations of the given string in lexicographically increasing order.

    Explanatio...

  • Ans. Backtracking

    The idea is to fix a character at a position and then find the permutations for rest of the characters.

    Make a list ‘ans’ which will contain the permutations of the given string.

     

    Algorithm:

    Let’s define a function generatePermutaionsHelper(Str, l, r). This function generates the permutations of the substring which starts from index  ‘l’ and ends at index  ‘r’.

    • Call the function: generatePermutai...
  • Answered Anonymously
  • Q2. 

    Find the Kth Row of Pascal's Triangle Problem Statement

    Given a non-negative integer 'K', determine the Kth row of Pascal’s Triangle.

    Example:

    Input:
    K = 2
    Output:
    1 1
    Input:
    K = 4
    Output:
    1 4 6 ...
  • Ans. Naive Approach

    In this approach, we find the row elements of the previous row using recursion, and based on the values of previous row elements, we will evaluate the current row elements.

    1. We are given a function kthRow() which takes an integer ‘K’ as the only parameter and returns an integer vector. This is the definition of our recursive function too.
    2. As the base condition of our recursive function, we will check if ‘K’ ...
  • Answered Anonymously
Round 2 - Video Call 

Round duration - 90 minutes
Round difficulty - Medium

This was a Machine Coding Round/LLD round followed by HLD round which was taken by Video Conferencing and Screen Sharing.

Round 3 - HR 

Round duration - 60 minutes
Round difficulty - Easy

This was the last round. This was HM round followed by the HR round.

Interview Preparation Tips

Eligibility criteriaWork Experience of 1+ yearsOla interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, Dynamic Programming, Aptitude, Computer Netwroks and System ArchitectureTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Solve previously asked questions. It tells you about the level of questions that the company asks. Check glass-door reviews it will help you to know what kind of questions company ask
Tip 2 : Be real during the interview and don’t show off.
Tip 3 : Prepare for theory subjects like Object-Oriented Programming System, Database Management System, Computer networks, etc.

Application resume tips for other job seekers

Tip 1 : Keep your resume simple with all work experience mentioned.
Tip 2 : Any unwanted information on the resume leaves a bad impact on the interviewer.
Tip 3 : You should be prepared to explain anything that’s written on your resume.
Tip 4 : Keep it of 1 page or 2 pages only

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Ola Cabs Software Developer Interview Questions and Answers

Q1. Next Greater ElementGiven an array, print the Next Greater Element (NGE) for every element. The Next greater Element for an element x is the first greater element on the right side of x in array. Elements for which no greater element exist,... read more
View answer (3)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

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. What is covariance? How does it measure sensitivity? What is volatili...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.

Ola Cabs Interview Process

based on 96 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Paytm Interview Questions
3.3
 • 777 Interviews
Swiggy Interview Questions
3.8
 • 436 Interviews
Zomato Interview Questions
3.7
 • 322 Interviews
Uber Interview Questions
4.2
 • 166 Interviews
MakeMyTrip Interview Questions
3.7
 • 121 Interviews
Rapido Interview Questions
3.8
 • 28 Interviews
Zoomcar Interview Questions
3.6
 • 21 Interviews
Meru cabs Interview Questions
3.8
 • 1 Interview
View all

Ola Cabs Reviews and Ratings

based on 1.9k reviews

3.4/5

Rating in categories

3.4

Skill development

3.2

Work-life balance

3.5

Salary

2.7

Job security

3.1

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 1.9k Reviews and Ratings
Kannada Linguist - AI Training & Evaluation

Bangalore / Bengaluru

0-5 Yrs

Not Disclosed

M - Controllership

Bangalore / Bengaluru

4-8 Yrs

₹ 18-25 LPA

Executive Steward

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

Explore more jobs
Driver
736 salaries
unlock blur

₹1 L/yr - ₹6.5 L/yr

CAR Driver
561 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Program Manager
247 salaries
unlock blur

₹9.5 L/yr - ₹34 L/yr

Assistant Manager
246 salaries
unlock blur

₹5.1 L/yr - ₹17.8 L/yr

Senior Executive
227 salaries
unlock blur

₹2 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Ola Cabs with

Uber

4.2
Compare

Meru cabs

3.8
Compare

Zoomcar

3.6
Compare

Rapido

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