Filter interviews by
I applied via Walk-in
posted on 4 Feb 2022
I applied via Referral and was interviewed in Aug 2021. There was 1 interview round.
posted on 17 May 2024
I applied via LinkedIn and was interviewed in Nov 2023. There was 1 interview round.
How do you manage busy operations
posted on 26 Jan 2025
I was interviewed in Dec 2024.
Experienced Food & Beverage Manager with a passion for creating memorable dining experiences.
Over 5 years of experience in managing food and beverage operations
Strong leadership skills with a focus on team development
Proven track record of increasing revenue and customer satisfaction
Passionate about creating innovative menus and enhancing guest experiences
There are 6 metro stations between Knowledge Park 2 metro station and Noida 52.
There are 6 metro stations between Knowledge Park 2 metro station and Noida 52.
The metro stations in between may include Pari Chowk, Alpha 1, Delta 1, Sector 148, Sector 149, and Sector 153.
The total distance covered between the two stations is approximately 12-15 kilometers.
Amity University is a private university in India known for its quality education and diverse range of courses.
Amity University is a private university located in India.
It offers a wide range of courses in various fields such as engineering, management, law, etc.
The university is known for its focus on quality education and modern facilities.
Amity University has multiple campuses across India and abroad.
It has collabor...
I am passionate about numbers and analyzing financial data, which is why I want to pursue a career in the finance department.
I have always been interested in finance and enjoy working with numbers.
I have a strong analytical mindset and excel in financial analysis.
I believe my skills and strengths align better with the responsibilities of a finance role.
I am motivated by the opportunity to make strategic financial decis...
posted on 1 Aug 2023
I applied via Company Website and was interviewed before Aug 2022. There were 3 interview rounds.
I start my work experience in Oman Dubai Qatar and South Sudan
My salary every month 700 US dollar I am working everyday 12 hours
I applied via Company Website
I tend to be a perfectionist and can sometimes spend too much time on tasks.
I have a tendency to overanalyze and double-check my work
I am working on finding a balance between efficiency and attention to detail
For example, in my previous role, I would spend too much time organizing the linen closet, but I have learned to prioritize tasks and delegate when necessary
I was looking for a better opportunity to grow and develop my skills.
I wanted to take on more responsibilities and challenges
I was seeking a more supportive and collaborative work environment
I wanted to work for a company with a stronger commitment to employee development
I left on good terms and have positive references from my previous employer
My strengths include attention to detail, organization, and effective communication.
I am highly organized and able to prioritize tasks effectively
I pay close attention to detail to ensure a high standard of cleanliness
I am skilled in communicating with both staff and guests to ensure satisfaction
I have experience in training and supervising staff to maintain a productive team
I am able to adapt to changing situations an
I am a detail-oriented and organized individual with experience in managing housekeeping staff and ensuring high standards of cleanliness.
Managed a team of housekeeping staff at a hotel for 3 years
Implemented new cleaning procedures that resulted in a 20% increase in guest satisfaction
Trained new staff members on proper cleaning techniques and safety protocols
Maintained inventory of cleaning supplies and equipment
Recei...
posted on 11 Jun 2024
There are two main types of lilies: Asiatic lilies and Oriental lilies.
Asiatic lilies are known for their vibrant colors and early blooming season.
Oriental lilies are known for their larger, fragrant blooms and later blooming season.
ARR stands for Average Room Rate in hotel operation.
ARR is calculated by dividing the total room revenue by the number of rooms sold.
It is an important metric for hotels to track as it helps in determining the average price at which rooms are being sold.
ARR can be used to analyze trends in pricing and make adjustments to maximize revenue.
For example, if a hotel has a total room revenue of $10,000 and sold 100 rooms, th
I can handle up to 20 rooms efficiently while ensuring high standards of cleanliness and guest satisfaction.
I am experienced in managing a team of housekeepers to efficiently clean and maintain rooms
I prioritize tasks and delegate responsibilities effectively to ensure all rooms are cleaned in a timely manner
I am familiar with using cleaning equipment and products to achieve desired results
I have a track record of meet...
I applied for this internship because I am passionate about gaining practical experience in the field and developing my skills.
Passionate about gaining practical experience
Desire to develop skills in the field
Opportunity to learn from professionals
Interest in the company's work and values
The newspaper contains news articles, opinion pieces, advertisements, and other information.
News articles covering current events
Opinion pieces discussing various topics
Advertisements for products and services
Sports section with updates on games and matches
Weather forecast for the day
Local events and community news
Business section with stock market updates
Entertainment section featuring movie reviews and celebrity news
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 applied via Campus Placement
based on 1 interview
Interview experience
based on 6 reviews
Rating in categories
Housekeeping Supervisor
17
salaries
| ₹0 L/yr - ₹0 L/yr |
Executive Accountant
15
salaries
| ₹0 L/yr - ₹0 L/yr |
Executive Chef
13
salaries
| ₹0 L/yr - ₹0 L/yr |
Executive Housekeeper
13
salaries
| ₹0 L/yr - ₹0 L/yr |
Restaurant Manager
12
salaries
| ₹0 L/yr - ₹0 L/yr |
Taj Hotels Resorts and Palaces
THE LEELA PALACES HOTELS & RESORTS
ITC Hotels
Oberoi Group of Hotels