Upload Button Icon Add office photos

Filter interviews by

Ruby Bus Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Javascript and React Questions
  • Q2. Ask Basic HTML and CSS questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Debouncing and throttling Implementation
  • Q2. File manger System in React
  • Ans. 

    A file manager system in React allows users to upload, download, organize, and manage files within a web application.

    • Use React components to create a user interface for file management

    • Implement features like file upload, download, delete, and organize files into folders

    • Utilize libraries like react-dropzone for file upload functionality

    • Store file data in a database or cloud storage for persistence

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I was misinformed by HR. She told me that it will be a managerial round, so i prepared for that but when it comes to interview it was a machine coding round. But still interviewer was really good and supportive but HR misleads me.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Design a minimum stack that supports the following operations: push, pop, top, and retrieving the minimum element in constant time.
  • Ans. 

    Design a stack that supports push, pop, top, and retrieving minimum element in constant time.

    • Use two stacks - one to store the actual elements and another to store the minimum values encountered so far

    • When pushing an element, check if it is smaller than the current minimum and if so, push it to the minimum stack

    • When popping an element, check if it is the current minimum and if so, pop from the minimum stack as well

    • Top ...

  • Answered by AI
  • Q2. Given an integer array of size n, find the maximum circular subarray sum. A circular array means that the end of the array connects back to the beginning. The solution should consider both the non-circular...
  • Ans. 

    Find the maximum circular subarray sum in an integer array.

    • Calculate the non-circular maximum subarray sum using Kadane's algorithm.

    • Calculate the circular maximum subarray sum by subtracting the minimum subarray sum from the total sum.

    • Compare the non-circular and circular maximum subarray sums to get the overall maximum sum.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for MakeMyTrip Software Developer interview:
  • stack
  • kadane's algorithm
Interview preparation tips for other job seekers - A solid approach to preparing for data structures and algorithms (DSA) is to use LeetCode as a primary resource.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Finance related questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about your background
  • Q2. Ur Work Roles and responsibility
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What do you know about travelling
  • Ans. 

    Travelling involves moving from one place to another for various purposes such as leisure, business, or exploration.

    • Travelling can be for leisure, business, exploration, or visiting family and friends.

    • It allows individuals to experience new cultures, cuisines, and landscapes.

    • Travelling can be domestic or international, by various modes of transportation like planes, trains, cars, or ships.

    • It can involve staying in hote...

  • Answered by AI
  • Q2. What do you know about kesari travels
Interview experience
5
Excellent
Difficulty level
-
Process Duration
More than 8 weeks
Result
Selected Selected
Round 1 - Case Study 

About Coco Cola Marketing Strategies

Round 2 - Technical 

(2 Questions)

  • Q1. Regarding Seo, Console
  • Q2. Explain GA4, how it is more useful.
  • Ans. 

    GA4 is the latest version of Google Analytics, offering more advanced features and insights for better tracking and analysis.

    • GA4 provides a more user-centric approach to tracking, focusing on individual user behavior across devices and platforms.

    • It offers enhanced event tracking capabilities, allowing for more detailed analysis of user interactions on a website or app.

    • GA4 includes machine learning capabilities for pred...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Must Go without a doubt
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Great xdcx xdvcx sc s cd vd v d bfd bfd b

Round 2 - One-on-one 

(2 Questions)

  • Q1. Array is goog aor nadmsc
  • Q2. Graph is best or not
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell about your self
  • Ans. 

    I am a detail-oriented back end executive with experience in managing data, optimizing processes, and ensuring efficient operations.

    • Experienced in handling data management tasks

    • Skilled in optimizing processes for efficiency

    • Proficient in ensuring smooth operations of back end systems

  • Answered by AI
  • Q2. Read these pehragraph then I will ask questions regarding this pehragraph
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are the mother sauces in classical cuisine, and how are they characterized?
  • Q2. Can you tell me about yourself?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(5 Questions)

  • Q1. What is your name?
  • Ans. 

    My name is John Smith.

    • My first name is John.

    • My last name is Smith.

    • I go by the name John Smith.

  • Answered by AI
  • Q2. Your branch in college?
  • Ans. 

    I majored in Business Administration with a focus on Operations Management.

    • Studied courses like Supply Chain Management, Production Planning, and Inventory Control

    • Participated in case competitions related to optimizing production processes

    • Completed internships at manufacturing companies to gain hands-on experience

  • Answered by AI
  • Q3. What is your fathers name?
  • Ans. 

    My father's name is John Smith.

    • His first name is John.

    • His last name is Smith.

    • He goes by the name John Smith.

    • He is known as Mr. Smith in his workplace.

  • Answered by AI
  • Q4. Write a sql code for having
  • Ans. 

    SQL code for having clause

    • Use the HAVING clause to filter groups based on aggregate functions

    • It is used with the GROUP BY clause

    • Example: SELECT department, AVG(salary) FROM employees GROUP BY department HAVING AVG(salary) > 50000;

  • Answered by AI
  • Q5. What is the difference between where and having
  • Ans. 

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

    • WHERE is used with SELECT, UPDATE, DELETE statements to filter rows based on a condition

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

    • WHERE is applied before the grouping operation, while HAVING is applied after the grouping operation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - notting very simple to join this company

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

Find out no of occurrence of character and spaces in given string

Ruby Bus Interview FAQs

How to prepare for Ruby Bus 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 Ruby Bus. The most common topics and skills that interviewers at Ruby Bus expect are Price Negotiation, Automobile, Automobile Components, Cost Reduction and Negotiation.

Tell us how to improve this page.

Interview Questions from Similar Companies

Uber Interview Questions
4.2
 • 163 Interviews
Ola Cabs Interview Questions
3.4
 • 141 Interviews
MakeMyTrip Interview Questions
3.7
 • 121 Interviews
Thomas Cook Interview Questions
3.8
 • 43 Interviews
RedBus Interview Questions
4.2
 • 31 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Zoomcar Interview Questions
3.6
 • 21 Interviews
Cleartrip Interview Questions
3.4
 • 16 Interviews
View all

Ruby Bus Reviews and Ratings

based on 22 reviews

4.0/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

4.0

Salary

3.4

Job security

3.8

Company culture

3.7

Promotions

3.8

Work satisfaction

Explore 22 Reviews and Ratings
Production Engineer
6 salaries
unlock blur

₹1.8 L/yr - ₹3.4 L/yr

Production Supervisor
6 salaries
unlock blur

₹1.1 L/yr - ₹3.6 L/yr

Design Engineer
5 salaries
unlock blur

₹1.5 L/yr - ₹3.8 L/yr

Purchase Officer
5 salaries
unlock blur

₹4 L/yr - ₹4.4 L/yr

Accountant
4 salaries
unlock blur

₹2.9 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Ruby Bus with

Savaari Car Rentals

3.7
Compare

Ola Cabs

3.4
Compare

Uber

4.2
Compare

RedBus

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