Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Oyo Rooms Team. If you also belong to the team, you can get access from here

Oyo Rooms Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Oyo Rooms Software Engineer Interview Questions and Answers

Updated 30 Nov 2024

Oyo Rooms Software Engineer Interview Experiences

7 interviews found

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

There were 3 coding questions totally based on dsa- hard

Round 2 - Technical 

(2 Questions)

  • Q1. Vertical Traversal
  • Q2. Find the node with shortest distance
  • Ans. 

    Use Dijkstra's algorithm to find the node with the shortest distance in a graph.

    • Implement Dijkstra's algorithm to calculate the shortest distance from a starting node to all other nodes in the graph.

    • Select the node with the smallest distance that has not been visited yet as the current node.

    • Update the distances of neighboring nodes from the current node if the new distance is smaller than the previously recorded distan...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Question based on oops
  • Q2. Question based on OS

Interview Preparation Tips

Interview preparation tips for other job seekers - BE good in technical and DSA

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I appeared for an interview in Oct 2024.

Round 1 - Coding Test 

Polyfills,html,css basics,js intermediate level

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode medium to hard

Round 2 - Technical 

(2 Questions)

  • Q1. Rain water trapping
  • Q2. Bricks and ladder

I applied via Campus Placement and was interviewed in Sep 2022. There were 2 interview rounds.

Round 1 - Coding Test 

3 data structure problem with medium to hard level leetcode type.

Round 2 - One-on-one 

(2 Questions)

  • Q1. 1st question was on vertical order traversal in a tree. it was from gfg he also told me to optimise it
  • Q2. 2nd question was from leetcode ie meeting rooms ll , medium question

Interview Preparation Tips

Interview preparation tips for other job seekers - do data structure practise from striver sheet as the ask dsa the most

Oyo Rooms interview questions for designations

 Software Engineer III

 (1)

 Software Development Engineer

 (1)

 Software Developer

 (12)

 Software Developer Intern

 (4)

 Software Development Engineer Intern

 (2)

 SDE (Software Development Engineer)

 (1)

 Senior Devops Engineer

 (1)

 Project Engineer

 (1)

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

I applied via Campus Placement and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

Dsa -> questions on trees, linked list, stack, dynamic programming

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Coding Test 

It was 1 hour long and was asked to pass all the test cases.

Round 2 - Technical 

(1 Question)

  • Q1. System Design with basic of OOP and OS
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 2021. 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 - Coding Test 

Coding Rond consisted of 3 questions

Round 3 - One-on-one 

(3 Questions)

  • Q1. 1. Data structures and algorithms
  • Q2. 2. Computer fundamentals
  • Q3. Revise all cs fundamentals

Interview Preparation Tips

Interview preparation tips for other job seekers - Just polish your DSA concepts and projects in your resume

Interview questions from similar companies

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 Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Php ,Oops
Round 2 - Technical 

(1 Question)

  • Q1. Security questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Join if you don't have only offer in your hand
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Use of model in laravel
  • Ans. 

    Models in Laravel are used to interact with the database and represent data.

    • Models in Laravel are used to perform database operations such as retrieving, inserting, updating, and deleting data.

    • Models help in organizing and structuring the data in the application.

    • Models in Laravel follow the MVC (Model-View-Controller) pattern.

    • Example: Creating a User model in Laravel to interact with the users table in the database.

  • Answered by AI
  • Q2. SQL get highest salary for employee
Round 2 - Technical 

(2 Questions)

  • Q1. SQL joins and types of joins
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left table.

    • F...

  • Answered by AI
  • Q2. What is self join and realted question
Round 3 - HR 

(1 Question)

  • Q1. Previous projects and contributions

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Next greater element.
  • Ans. 

    Next greater element is a problem where we find the closest greater element for each element in an array.

    • Iterate through the array

    • For each element, compare it with the elements on its right

    • Find the first element greater than the current element

    • Store the result in a new array or data structure

  • Answered by AI
  • Q2. Find all prime number up to given N.
  • Ans. 

    Program to find all prime numbers up to given N.

    • Start with 2 and iterate up to N

    • For each number, check if it is divisible by any number from 2 to its square root

    • If not divisible, add it to the list of primes

  • Answered by AI
  • Q3. You have a file of size approx 10GB and that file has many urls not necessary unique. how will you fetch unique url from there.
  • Ans. 

    Fetching unique URLs from a 10GB file with non-unique URLs.

    • Read the file in chunks to avoid memory issues.

    • Use a hash set to store unique URLs.

    • Iterate through each URL in the file and add it to the hash set if it doesn't already exist.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to solve even if you don't have any idea about the question.

Skills evaluated in this interview

Oyo Rooms Interview FAQs

How many rounds are there in Oyo Rooms Software Engineer interview?
Oyo Rooms interview process usually has 2-3 rounds. The most common rounds in the Oyo Rooms interview process are Coding Test, Technical and Resume Shortlist.
What are the top questions asked in Oyo Rooms Software Engineer interview?

Some of the top questions asked at the Oyo Rooms Software Engineer interview -

  1. Find the node with shortest dista...read more
  2. 1st question was on vertical order traversal in a tree. it was from gfg he als...read more
  3. 2nd question was from leetcode ie meeting rooms ll , medium quest...read more

Tell us how to improve this page.

Oyo Rooms Software Engineer Interview Process

based on 6 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more

Interview Questions from Similar Companies

Burger King Interview Questions
3.8
 • 70 Interviews
Hyatt Regency Interview Questions
4.1
 • 43 Interviews
Pizza Hut Interview Questions
3.9
 • 42 Interviews
JW Marriott Interview Questions
4.2
 • 40 Interviews
Tata Starbucks Interview Questions
4.3
 • 39 Interviews
View all
Oyo Rooms Software Engineer Salary
based on 87 salaries
₹7.2 L/yr - ₹19.8 L/yr
51% more than the average Software Engineer Salary in India
View more details

Oyo Rooms Software Engineer Reviews and Ratings

based on 15 reviews

3.1/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.1

Salary

2.0

Job security

2.9

Company culture

2.5

Promotions

3.1

Work satisfaction

Explore 15 Reviews and Ratings
Business Development Manager
1.7k salaries
unlock blur

₹4.4 L/yr - ₹14.5 L/yr

Demand Manager
815 salaries
unlock blur

₹3.1 L/yr - ₹9.6 L/yr

Key Account Manager
457 salaries
unlock blur

₹3 L/yr - ₹10.5 L/yr

Hotel Manager
444 salaries
unlock blur

₹1 L/yr - ₹4.5 L/yr

Guest Relation Executive
388 salaries
unlock blur

₹0.9 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Oyo Rooms with

Jubilant Foods Works

3.7
Compare

Mahindra Holidays & Resorts

3.5
Compare

Oberoi Group of Hotels

4.1
Compare

Marriott International

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