Upload Button Icon Add office photos

Ola Cabs

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Ola Cabs Senior QA Engineer Interview Questions and Answers

Updated 30 Jun 2022

Ola Cabs Senior QA Engineer Interview Experiences

1 interview found

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

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Program to find all possible combinations of elements from two sets of arrays such that the sum of elements is equal to one of the elements in the array itself.
  • Ans. 

    Program to find all possible combinations of elements from two sets of arrays such that the sum of elements is equal to one of the elements in the array itself.

    • Create two arrays of integers

    • Loop through both arrays and find all possible combinations

    • Check if the sum of elements is equal to any element in the array

    • Return all combinations that meet the criteria

  • Answered by AI
  • Q2. Program to find the next bigger number for the given number by just interchanging it's digits.ex- for 533224, answer is 533242
  • Ans. 

    Program to find the next bigger number for the given number by interchanging its digits.

    • Convert the number to a string to access individual digits

    • Start from the rightmost digit and find the first digit that is smaller than the digit to its right

    • Swap this digit with the smallest digit to its right that is greater than it

    • Sort the digits to the right of the swapped digit in ascending order

    • Convert the string back to a numb

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have been through 5 interview rounds in MakeMyTrip including one 1 written test followed by 4 face to face interview. Most of the questions asked were related to Java only. Many programs were asked to write algorithm for the given problem based on DS.

Be confident and prepare well on your DS and Algorithms concepts. Practice more on programming some basic problems.

Skills evaluated in this interview

I was interviewed before Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a written test with 2 coding problems.

  • 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 c...

  • Ans. 

    The task is to find all unique combinations in an array where the sum is equal to a given target sum, with elements in non-decreasing order.

    • Use backtracking to generate all possible combinations.

    • Sort the array to ensure elements are in non-decreasing order.

    • Keep track of the current combination and sum while exploring the array.

    • Recursively explore all possible combinations.

    • Return the valid combinations that sum up to th

  • Answered by AI
  • Q2. 

    Next Greater Number Problem Statement

    Given a string S which represents a number, determine the smallest number strictly greater than the original number composed of the same digits. Each digit's frequenc...

  • Ans. 

    The task is to find the smallest number greater than the given number with the same set of digits.

    • Iterate from right to left to find the first digit that can be swapped with a larger digit to make the number greater.

    • Swap this digit with the smallest digit to its right that is larger than it.

    • Sort all digits to the right of the swapped digit in ascending order to get the smallest number.

    • If no such number exists, return -

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMakeMyTrip interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 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

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

I applied via Recruitment Consulltant and was interviewed before Oct 2022. There were 6 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 Resume tips
Round 2 - Initial Discussion 

(1 Question)

  • Q1. Basics on Automation
Round 3 - Coding Test 

2 programming question moderate level

Round 4 - Technical 

(1 Question)

  • Q1. Java Questions/ Selenium Question/ SQL
Round 5 - One-on-one 

(1 Question)

  • Q1. Managerial Round. Puzzle/ Basic program
Round 6 - HR 

(1 Question)

  • Q1. Salary Discussion, basic HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Go for it. Good Company to work with.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Api status codes, api debugging questions
  • Q2. If you get 500 error how to debug.
  • Ans. 

    To debug a 500 error, check server logs, review code changes, test API endpoints, and use debugging tools.

    • Check server logs for error details

    • Review recent code changes that may have caused the error

    • Test API endpoints using tools like Postman

    • Use debugging tools like Chrome DevTools or Firebug

  • Answered by AI
  • Q3. One java string question merge two strings diagonally.
  • Ans. 

    Merge two strings diagonally in a Java array of strings.

    • Iterate through each row and column to merge characters diagonally

    • Keep track of the diagonal position to insert characters from both strings

    • Handle cases where strings have different lengths

    • Example: String 1: 'hello', String 2: 'world', Merged: 'hweolrllod'

    • Example: String 1: 'abc', String 2: '123', Merged: 'a1b2c3'

  • Answered by AI

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Oct 2021. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java coding and selenium basics
Round 2 - Technical 

(1 Question)

  • Q1. Appium and charles api handling
  • Ans. 

    Appium is a mobile automation tool while Charles API is a web debugging proxy tool.

    • Appium is used for automating mobile apps on iOS and Android platforms.

    • Charles API is used for intercepting and analyzing network traffic between a client and server.

    • Appium can be used in conjunction with Charles API to capture and analyze network traffic during mobile app testing.

    • This can help identify and debug issues related to networ...

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Aptitude and other discussions
Round 4 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. Why are you looking for a change?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with a good resume/cv and be confident about your skills. Even if you have knowledge about any topic but have no experience on it, be straightforward.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Interview was very good, asked coding questions and testing principles

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

I applied via LinkedIn and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Reasoning, Manual Testing, Java, selenium

Round 2 - Coding Test 

Java code 2 program then selenium questions, API Testing, DataBase

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

I applied via Naukri.com and was interviewed before Sep 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 Resume tips
Round 2 - Coding Test 

Java,Selenium,SQL, Lending Solutions

Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Aptitude Test 

Mcq and Coding Question

Round 3 - Technical 

(1 Question)

  • Q1. Java and Selenium
Contribute & help others!
anonymous
You can choose to be anonymous

Ola Cabs Interview FAQs

How many rounds are there in Ola Cabs Senior QA Engineer interview?
Ola Cabs interview process usually has 1 rounds. The most common rounds in the Ola Cabs interview process are Technical.

Recently Viewed

LIST OF COMPANIES

Infosys BPM

Locations

LIST OF COMPANIES

Infosys BPM

Locations

INTERVIEWS

Air India

No Interviews

INTERVIEWS

InterGlobe Aviation

No Interviews

COMPANY BENEFITS

Infosys BPM

No Benefits

SALARIES

Oracle Cerner

SALARIES

Hinge Health

JOBS

Infor Global Solution

No Jobs

SALARIES

Hinge Health

SALARIES

Hinge Health

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 753 Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
BigBasket Interview Questions
3.9
 • 359 Interviews
Udaan Interview Questions
3.9
 • 334 Interviews
CARS24 Interview Questions
3.5
 • 332 Interviews
JustDial Interview Questions
3.5
 • 329 Interviews
Info Edge Interview Questions
3.9
 • 317 Interviews
View all

Ola Cabs Senior QA Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

1.0

Work-life balance

3.0

Salary

1.0

Job security

1.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Driver
750 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

CAR Driver
469 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Program Manager
247 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
246 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Executive
241 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ola Cabs with

Uber

4.2
Compare

Meru cabs

3.8
Compare

Zoomcar

3.7
Compare

Rapido

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