Upload Button Icon Add office photos

Filter interviews by

K Hospitality Corp Interview Questions, Process, and Tips

Updated 30 Jul 2023

Top K Hospitality Corp Interview Questions and Answers

K Hospitality Corp Interview Experiences

Popular Designations

4 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Tell about your experience
Round 2 - Technical 

(2 Questions)

  • Q1. How can u handle a team
  • Q2. Tell about HVAC and how large site you can handle
  • Ans. 

    HVAC stands for heating, ventilation, and air conditioning. I have experience managing HVAC systems for large sites.

    • HVAC systems are responsible for controlling the temperature, humidity, and air quality in a building.

    • I have managed HVAC systems for commercial buildings over 100,000 square feet.

    • Experience with troubleshooting and repairing HVAC equipment such as boilers, chillers, and air handlers.

    • Knowledge of energy e...

  • Answered by AI

Maintenance and Project Manager Interview Questions asked at other Companies

Q1. Tell about HVAC and how large site you can handle
View answer (1)

PHP Developer Interview Questions & Answers

user image Anonymous

posted on 11 Oct 2021

I applied via Recruitment Consultant and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. What is session and cookies.
  • Ans. 

    Session and cookies are used to store data on the client-side for a specific period of time.

    • Session stores data on the server-side while cookies store data on the client-side

    • Session data is destroyed when the user closes the browser while cookies can have an expiration date

    • Session data is more secure than cookies as it is not accessible by the client-side

    • Cookies are commonly used for user authentication and personaliza

  • Answered by AI
  • Q2. What is unset and unlink in php
  • Ans. 

    unset and unlink are functions in PHP used to remove variables and files respectively.

    • unset is used to destroy a variable and free up memory

    • unlink is used to delete a file from the server

    • Both functions return a boolean value indicating success or failure

    • unset can be used on arrays, objects, and variables

    • unlink can be used with a file path or a file handle

  • Answered by AI
  • Q3. Helpers in laravel and codeigniter framework.
  • Q4. Access modifiers in oops
  • Ans. 

    Access modifiers define the scope of class properties and methods.

    • Public: accessible from anywhere

    • Private: accessible only within the class

    • Protected: accessible within the class and its subclasses

    • Examples: public function getName() { ... }, private $age, protected $salary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask question from each section.

Skills evaluated in this interview

PHP Developer Interview Questions asked at other Companies

Q1. How can we report errors in the log file while working on a core PHP project?
View answer (3)

Commie 2nd Interview Questions & Answers

user image chefrushi

posted on 15 Dec 2021

I applied via Walk-in and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Explain Types of pasta..?
  • Ans. 

    Types of pasta include spaghetti, penne, macaroni, linguine, and lasagna.

    • Spaghetti: long, thin cylindrical pasta

    • Penne: short, tube-shaped pasta with angled ends

    • Macaroni: small, curved pasta tubes

    • Linguine: long, flat pasta similar to spaghetti

    • Lasagna: wide, flat pasta sheets used in layered dishes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This question asked in many organisations as kitchen staff and service staff kindly give above answer for your basic knowledge

Commie 2nd Interview Questions asked at other Companies

Q1. Explain Types of pasta..?
View answer (2)

HR Executive Interview Questions & Answers

user image Anonymous

posted on 14 Aug 2019

I applied via Walk-in and was interviewed in Jul 2019. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. No questions rather than personal
  • Q2. Salary expectation
  • Q3. What's the current sal
  • Ans. 

    The current salary range for this position is competitive and based on experience and qualifications.

    • Salaries are determined based on market research and internal salary structures.

    • Factors such as years of experience, education level, and specific skills can impact salary.

    • Salary negotiations may also play a role in determining the final offer.

  • Answered by AI
  • Q4. Are you married or not
  • Ans. 

    Yes, I am married.

    • I am happily married for 5 years.

    • My spouse and I enjoy traveling together.

    • Being married has taught me the importance of communication and compromise.

  • Answered by AI
  • Q5. How many years of experience
  • Ans. 

    I have 5 years of experience in HR roles.

    • I have worked in various HR roles for a total of 5 years.

    • My experience includes recruitment, employee relations, and training.

    • I have successfully implemented HR policies and procedures in previous roles.

  • Answered by AI
  • Q6. And the concern hr has not taken interview some other employee of tfs has taken.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing good ... They will reject for silly reasons.on personal things.

HR Executive Interview Questions asked at other Companies

Q1. What do you know about Labor Law
View answer (6)

K Hospitality Corp interview questions for popular designations

 HR Executive

 (1)

 Maintenance and Project Manager

 (1)

 Commie 2nd

 (1)

 PHP Developer

 (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

K Hospitality Corp Interview FAQs

How many rounds are there in K Hospitality Corp interview?
K Hospitality Corp interview process usually has 3 rounds. The most common rounds in the K Hospitality Corp interview process are Resume Shortlist, HR and Technical.
How to prepare for K Hospitality Corp 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 K Hospitality Corp. The most common topics and skills that interviewers at K Hospitality Corp expect are Grievance Handling, HR Generalist Activities and HR Operations.
What are the top questions asked in K Hospitality Corp interview?

Some of the top questions asked at the K Hospitality Corp interview -

  1. Tell about HVAC and how large site you can han...read more
  2. What is unset and unlink in ...read more
  3. What is session and cooki...read more

Tell us how to improve this page.

K Hospitality Corp Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
ITC Hotels Interview Questions
4.1
 • 85 Interviews
Radisson Hotels Interview Questions
4.1
 • 76 Interviews
Hyatt Regency Interview Questions
4.1
 • 43 Interviews
AccorHotels Interview Questions
4.4
 • 18 Interviews
View all

K Hospitality Corp Reviews and Ratings

based on 44 reviews

3.9/5

Rating in categories

3.4

Skill development

3.9

Work-life balance

3.6

Salary

3.8

Job security

3.6

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 44 Reviews and Ratings
Marketing Manager
13 salaries
unlock blur

₹5.5 L/yr - ₹17.5 L/yr

Restaurant Manager
11 salaries
unlock blur

₹2.8 L/yr - ₹5.6 L/yr

Assistant Restaurant Manager
8 salaries
unlock blur

₹3.6 L/yr - ₹5.6 L/yr

Manager
7 salaries
unlock blur

₹9.2 L/yr - ₹22 L/yr

General Manager
6 salaries
unlock blur

₹12.9 L/yr - ₹28 L/yr

Explore more salaries
Compare K Hospitality Corp with

The Indian Hotels Company

4.3
Compare

ITC Hotels

4.1
Compare

Taj Hotels Resorts and Palaces

4.2
Compare

Oberoi Group of Hotels

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