Upload Button Icon Add office photos

Filter interviews by

Rally OurBus Interview Questions and Answers

Updated 27 Feb 2024

Rally OurBus Interview Experiences

Popular Designations

4 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. 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 - Technical 

(3 Questions)

  • Q1. 2 rounds of interview.one with reporting manager and other with CEO. General previous work related questions asked. Introduction and family related information.
  • Q2. Introduction and familybackground
  • Q3. Previous company working experience
Round 3 - Technical 

(1 Question)

  • Q1. Work related information asked . The work done by existing employees were not satisfactory per CEO talk and asked me how can I be different in work than them..

Interview Preparation Tips

Interview preparation tips for other job seekers - Very negotiable..
At last moment they inform you that they do no provide laptops and you have to bring own.
No cab facility for female employees even though US shift

Finance Manager Interview Questions asked at other Companies

Q1. What are the major adjustments need to be done while finalization of Accounts ?
View answer (2)

Interview Questions & Answers

user image Anonymous

posted on 27 Feb 2024

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

I applied via LinkedIn and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What are total no of people travelling from Noida to gurgaon on a daily basis?

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Nov 2022. There were 5 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 - Technical 

(3 Questions)

  • Q1. Basics of android and swift
  • Q2. What is weak reference
  • Ans. 

    Weak reference is a reference that does not prevent the referenced object from being garbage collected.

    • Weak references are used in programming languages to avoid memory leaks.

    • They are typically used in cache implementations to allow objects to be garbage collected when not in use.

    • Weak references are created using WeakReference class in Java.

  • Answered by AI
  • Q3. Frameworks worked on
  • Ans. 

    Worked on various frameworks including React, Angular, and Spring

    • React

    • Angular

    • Spring

  • Answered by AI
Round 3 - Coding Test 

Fetch remote api data into iOS table view with latest of the frameworks

Round 4 - One-on-one 

(1 Question)

  • Q1. What are yours goals and ambitions
Round 5 - HR 

(2 Questions)

  • Q1. Salary discussions
  • Q2. Work commitment

Interview Preparation Tips

Topics to prepare for Rally OurBus Lead Engineer interview:
  • Java
  • Swift
  • Objective C
  • Android Studio
Interview preparation tips for other job seekers - Be positive and firm on your beliefs

Skills evaluated in this interview

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping & closing coil of vcb?
View answer (8)

Interview Questions & Answers

user image Anonymous

posted on 22 May 2022

I applied via Naukri.com and was interviewed in Apr 2022. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Typing Test plus short introduction
Round 2 - One-on-one 

(1 Question)

  • Q1. Describe yourself and your previous role, few logical queestions, real time operational questions, why should we choose you.
Round 3 - One-on-one 

(1 Question)

  • Q1. With the operations head- Similaar to previous round.
Round 4 - One-on-one 

(1 Question)

  • Q1. Logical question, about the role, if you are given a bus and a cricket ball, howmany spheres would you need to fill the ball. Two things you learn from the previous organisation. One thing you want to go b...

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and honest. Don't exaggerate anything. Answer calmly.

Rally OurBus interview questions for popular designations

 Lead Engineer

 (1)

 Finance Manager

 (1)

Interview questions from similar companies

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, don't hesitate.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is dictionary in python?
  • Ans. 

    Dictionary is a collection of key-value pairs in Python.

    • Keys must be unique and immutable.

    • Values can be of any data type.

    • Access values using keys.

    • Add or modify values using keys.

    • Use dict() constructor or {} to create a dictionary.

    • Example: {'name': 'John', 'age': 30}

    • Example: dict(name='John', age=30)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - easy one. any language will do the job.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1.What is Opps concepts in Java.
  • Ans. 

    OOPs concepts in Java are the fundamental principles of object-oriented programming.

    • Encapsulation: wrapping data and code into a single unit

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent multiple types

    • Abstraction: hiding implementation details from the user

    • Examples: class, object, inheritance, polymorphism, encapsulation

  • Answered by AI
  • Q2. 2.What is difference between stack and queue?
  • Ans. 

    Stack is a LIFO data structure while Queue is a FIFO data structure.

    • Stack follows Last In First Out (LIFO) principle while Queue follows First In First Out (FIFO) principle.

    • Stack has two main operations: push and pop while Queue has two main operations: enqueue and dequeue.

    • Stack is used in recursive function calls, undo/redo operations, and backtracking while Queue is used in breadth-first search, printing tasks in ord...

  • Answered by AI
  • Q3. 3.Write SQL query to find second highest salary in database?
  • Ans. 

    SQL query to find second highest salary in database

    • Use ORDER BY and LIMIT to get the second highest salary

    • Assume ties are allowed and use DISTINCT

  • Answered by AI
  • Q4. 4. Difference Between method overloading and method overriding?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Method overloading is done within the same class while method overriding is done in different classes (subclass and superclass).

    • Method overloading is achieved by changing the number of parameters or the data type of ...

  • Answered by AI
  • Q5. 5.which is the parent class of all classes in Java?
  • Ans. 

    The parent class of all classes in Java is the Object class.

    • All classes in Java implicitly extend the Object class.

    • The Object class provides basic methods such as toString(), equals(), and hashCode().

    • Any class can override these methods to provide custom implementations.

    • Example: public class MyClass extends Object { ... }

    • Example: Object obj = new MyClass();

  • Answered by AI
  • Q6. Explain your final year project?
  • Q7. Difference between SQL and NoSql database?
  • Ans. 

    SQL databases are relational and use structured query language, while NoSQL databases are non-relational and use various data models.

    • SQL databases are based on a fixed schema, while NoSQL databases are schema-less.

    • SQL databases use tables to store data, while NoSQL databases use various data models like key-value, document, columnar, or graph.

    • SQL databases are better suited for complex queries and structured data, whil...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All interview process are easy. Intervier just ask basic concept of related to your stream.

Skills evaluated in this interview

Analyst Interview Questions & Answers

TCS user image Anonymous

posted on 30 Aug 2022

I applied via Naukri.com and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Why do you want to join tcs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident enough and convey your answers crisp and clear. Try to match your current role with the position you applied for.

I applied via Naukri.com and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Logical Reasoning Puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - Smile in between and be confident. No matter what you will be alive after the interview. People are ready to pay billions but can't afford a second more when it is all over.

Interview Questionnaire 

1 Question

  • Q1. What is tcs
  • Ans. 

    TCS stands for Tata Consultancy Services, a multinational IT services company based in India.

    • TCS is one of the largest IT services companies in the world.

    • It provides a wide range of services including consulting, software development, and business process outsourcing.

    • TCS has clients in various industries such as banking, healthcare, and retail.

    • The company has a strong focus on innovation and has several research and de...

  • Answered by AI

Rally OurBus Interview FAQs

How many rounds are there in Rally OurBus interview?
Rally OurBus interview process usually has 3-4 rounds. The most common rounds in the Rally OurBus interview process are One-on-one Round, Technical and Resume Shortlist.
What are the top questions asked in Rally OurBus interview?

Some of the top questions asked at the Rally OurBus interview -

  1. What are total no of people travelling from Noida to gurgaon on a daily bas...read more
  2. What is weak refere...read more
  3. Frameworks worked...read more

Tell us how to improve this page.

Rally OurBus Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Uber Interview Questions
4.2
 • 150 Interviews
Ola Cabs Interview Questions
3.4
 • 139 Interviews
MakeMyTrip Interview Questions
3.6
 • 122 Interviews
RedBus Interview Questions
4.1
 • 31 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Ixigo.com Interview Questions
3.6
 • 21 Interviews
Zoomcar Interview Questions
3.7
 • 21 Interviews
Cleartrip Interview Questions
3.4
 • 18 Interviews
Goibibo Interview Questions
4.3
 • 6 Interviews
trivago Interview Questions
4.2
 • 2 Interviews
View all

Rally OurBus Reviews and Ratings

based on 22 reviews

2.0/5

Rating in categories

1.8

Skill development

2.5

Work-life balance

2.5

Salary

1.5

Job security

1.6

Company culture

2.0

Promotions

1.9

Work satisfaction

Explore 22 Reviews and Ratings
Financial Analyst
5 salaries
unlock blur

₹5.6 L/yr - ₹6.6 L/yr

Team Lead
5 salaries
unlock blur

₹7 L/yr - ₹7.8 L/yr

Manager
4 salaries
unlock blur

₹13.1 L/yr - ₹16.2 L/yr

Senior Associate
4 salaries
unlock blur

₹5.4 L/yr - ₹5.7 L/yr

Operations Associate
4 salaries
unlock blur

₹4.3 L/yr - ₹5.5 L/yr

Explore more salaries
Compare Rally OurBus with

RedBus

4.1
Compare

MakeMyTrip

3.7
Compare

Ola Cabs

3.4
Compare

Uber

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