Filter interviews by
I applied via LinkedIn and was interviewed before Jul 2021. There was 1 interview round.
There are countless types of cooking techniques and styles used around the world.
Cooking techniques can be categorized into dry heat, moist heat, and combination methods.
Examples of dry heat cooking include grilling, roasting, and sautéing.
Examples of moist heat cooking include boiling, steaming, and poaching.
Combination methods involve using both dry and moist heat, such as braising and stewing.
Other types of cooking ...
There are several types of mother sauces in classical French cuisine.
There are five main mother sauces: Béchamel, Velouté, Espagnole, Hollandaise, and Tomato.
Each mother sauce serves as a base for many other sauces and dishes.
For example, Béchamel sauce is made with a roux and milk, and it can be used to make cheese sauce or creamy pasta dishes.
Hollandaise sauce is an emulsion of egg yolks and butter, often served with...
There are several types of cutting techniques used in cooking.
Chop - cutting into small pieces
Dice - cutting into small cubes
Julienne - cutting into thin strips
Mince - cutting into very small pieces
Slice - cutting into thin pieces
Cube - cutting into larger cubes
Chiffonade - cutting into thin ribbons
Brunoise - cutting into very small cubes
Paysanne - cutting into small, thin pieces
Tourne - cutting into a football shape
There are several types of cutting boards available for different purposes.
There are wooden cutting boards, which are great for slicing and dicing fruits and vegetables.
Plastic cutting boards are easy to clean and can be used for cutting meat and poultry.
Bamboo cutting boards are eco-friendly and durable.
Glass cutting boards are hygienic and can be used for rolling dough.
Marble cutting boards are great for keeping doug...
There are no types of niyefs as it is not a known term in the culinary world.
Niyef is not a known term in the culinary world
It is possible that the interviewer meant to ask about a different term
Clarification or context may be needed to provide a proper answer
To daisy cart in plate, arrange food items in a circular pattern with the center being the focal point.
Arrange food items in a circular pattern
Start with the largest item in the center
Alternate colors and textures for visual appeal
Use herbs or edible flowers as garnish
Consider the balance of flavors and textures
There are thousands of types of wines, but they can be broadly categorized into five main types.
There are five main types of wines: red, white, rosé, sparkling, and fortified.
Red wines are made from red or black grapes and have a bold flavor.
White wines are made from white or green grapes and have a lighter flavor.
Rosé wines are made from red grapes but have a lighter color and flavor.
Sparkling wines have bubbles and c...
Red cutting boards are used for raw meat to prevent cross-contamination.
Use a red cutting board exclusively for raw meat.
Clean the board thoroughly with hot soapy water after each use.
Sanitize the board with a solution of 1 tablespoon of bleach per gallon of water.
Replace the board if it becomes heavily scratched or discolored.
Examples of meats to use on a red cutting board include beef, pork, lamb, and game meats.
Green cutting boards are used for cutting fruits and vegetables to avoid cross-contamination.
Use green cutting board for fruits and vegetables only
Clean the cutting board thoroughly before and after use
Replace the cutting board if it becomes too worn or develops deep grooves
Avoid using the same cutting board for raw meat and poultry
Use separate cutting boards for different types of food
Yellow cutting board is used for cutting raw poultry.
Use yellow cutting board for raw poultry to avoid cross-contamination
Clean the board thoroughly after each use
Do not use the same board for other foods without proper cleaning
Replace the board if it becomes heavily scratched or discolored
Chappati is a type of Indian flatbread that can be used as a wrap or eaten with curries and other dishes.
Roll out the dough into thin circles
Cook on a hot griddle or tawa until lightly browned on both sides
Serve hot with your favorite curry or use as a wrap for sandwiches or kebabs
White cutting boards are used for preparing dairy, bread, and other non-meat items.
Use white cutting boards for dairy products to avoid cross-contamination with meat
Use white cutting boards for bread to avoid staining from other colored boards
Clean and sanitize white cutting boards thoroughly after each use
Replace white cutting boards when they become heavily scratched or discolored
I applied via Approached by Company and was interviewed before Apr 2021. There was 1 interview round.
Top trending discussions
I applied via Campus Placement
I applied via Campus Placement
posted on 27 Jan 2017
I was interviewed in Dec 2016.
I am a dedicated professional with experience in management. I want to work in Oyo for its innovative approach to hospitality. Life in Bangalore is vibrant and diverse.
I have a strong background in management and leadership roles
I am attracted to Oyo for its innovative technology-driven approach to hospitality
Bangalore offers a vibrant cultural scene with diverse food options and entertainment
The city is known for its
I was interviewed before Sep 2020.
Round duration - 90 minutes
Round difficulty - Medium
Coding question of medium level difficulty, from DP.
18 MCQs were core CSE related concepts e.g: OS, OOPs, DBMS, Networking
Time was 90 minutes.
You are given an NxM matrix consisting of '0's and '1's. A '1' signifies that the cell is accessible, whereas a '0' indicates that the cell is blocked. Your task is to compute ...
Find the minimum cost to reach a destination in a matrix with blocked cells.
Use Breadth First Search (BFS) algorithm to explore all possible paths from the starting point to the destination.
Keep track of the cost incurred at each cell and update it as you move through the matrix.
Return the minimum cost to reach the destination or -1 if it is unreachable.
Round duration - 30 minutes
Round difficulty - Medium
It was an one-to-one interview. It checks your problem solving ability and a few OOPs, OS, DBMS etc concepts. Coding questions were related to array, queue and DP.
Given an integer array/list ARR
of length 'N', determine if it is possible to form at least one non-degenerate triangle using the values of the array as the sides o...
Determine if it is possible to form a non-degenerate triangle using array elements as sides.
Check if the sum of any two sides is greater than the third side for all combinations of sides.
If the above condition is met for any combination, return true; otherwise, return false.
You are given an array/list of integers. The task is to return the maximum sum of a subsequence such that no two elements in the subsequence are adjacent in the given ...
Find the maximum sum of non-adjacent elements in an array.
Use dynamic programming to keep track of the maximum sum at each index, considering whether to include the current element or not.
At each index, the maximum sum can be either the sum excluding the current element or the sum including the current element but excluding the previous element.
Iterate through the array and update the maximum sum accordingly.
Example: F...
Round duration - 45 minutes
Round difficulty - Easy
It was also a problem solving round. However after coding questions, they also asked CSE conceptual questions.
Convert a given binary tree into its sum tree. In a sum tree, every node's value is replaced with the sum of its immediate children's values. Leaf nodes are set to 0. Finally, return th...
Convert a binary tree into a sum tree by replacing each node's value with the sum of its children's values. Return preorder traversal.
Traverse the tree in a bottom-up manner, starting from the leaf nodes.
For each node, update its value to the sum of its children's values.
Set leaf nodes to 0.
Return the preorder traversal of the modified tree.
Core concepts of indexing in DBMS include types of indexes, benefits of indexing, and factors affecting index performance.
Types of indexes: B-tree, Hash, Bitmap, etc.
Benefits of indexing: Faster data retrieval, improved query performance, reduced disk I/O.
Factors affecting index performance: Selectivity, clustering factor, index fragmentation.
Examples: Creating an index on a column in a table to speed up search queries
Tip 1 : Strengthen your coding, algorithms. This is one most important thing for OYO. Practice Graph, tree, DP, greedy, recursion, data structures questions.
Tip 2 : OS, DBMS concepts will give you an edge over others. Like serialisation, index, deadlock, semaphore
Tip 3 : Only mention those projects in your resume which you are very clear about. They don't ask for detailed explanation, just an overall idea about your projects will increase your chances
Tip 1 : Mention college projects wisely. No need to mention fancy projects. Any project that you can describe to the interviewer will be a best solution
Tip 2 : Neat & clean resume with your skills, technical stacks that you mastered. That's all. They don't require you to be very active in extra-curricular activities, and these things will not give you any advantage.
Tip 3 : Keep it of single page
I was interviewed in Nov 2022.
I applied via Walk-in and was interviewed in Oct 2022. There were 3 interview rounds.
Practical case solving about the work you are applying for
posted on 7 Apr 2022
I applied via Company Website
Deeply understand every setuation
based on 6 interviews
Interview experience
based on 28 reviews
Rating in categories
Receptionist
45
salaries
| ₹0 L/yr - ₹0 L/yr |
Front Office Manager
35
salaries
| ₹0 L/yr - ₹0 L/yr |
Front Office Executive
31
salaries
| ₹0 L/yr - ₹0 L/yr |
Manager
26
salaries
| ₹0 L/yr - ₹0 L/yr |
Chef
22
salaries
| ₹0 L/yr - ₹0 L/yr |
Oyo Rooms
FabHotels
Treebo Hotels
Lemon Tree Hotels