Upload Button Icon Add office photos

Filter interviews by

Ihg Group Intern Interview Questions and Answers

Updated 24 Nov 2021

Ihg Group Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 24 Nov 2021

I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Just some basic info about me.
  • Q2. They just check your confidence and communication skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident and keep a smile on your face whether you know the answer or not. Be friendly to the interviewer. That's what helped me.

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. What u do??
  • Q2. Why u applied for this??
  • Q3. What is there in today's newspaper??
  • Ans. 

    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

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Experience: we entered. introduced ourselves. then given a task in which we need to know the nxt person sitting to us and then we have to describe them.
Tips: Here they check what kind of communication skills you are having and how much you can convince a person to gain knowledge
Duration: 5 minutes

HR Intern Interview Questions & Answers

Ramada user image Aiswarya K P

posted on 19 Aug 2024

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

I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I am a motivated HR intern with a passion for learning and contributing to a positive work environment.

    • Currently pursuing a degree in Human Resources

    • Completed relevant coursework in recruitment and employee relations

    • Previous internship experience in a corporate HR department

    • Strong communication and organizational skills

    • Passionate about fostering a diverse and inclusive workplace

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Introduction of yours ?
  • Ans. 

    I am a motivated and detail-oriented student with a passion for learning and gaining practical experience in the field.

    • Currently pursuing a degree in [Your Major] at [Your University]

    • Completed relevant coursework in [Specific Subjects]

    • Previous internship experience at [Company Name] where I gained skills in [Specific Skills]

    • Involved in extracurricular activities such as [Club or Organization]

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via campus placement at Christ University, Bangalore and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Group Discussion 

Just some random easy topic

Round 2 - Aptitude Test 

Easy questions overall gk

Interview Preparation Tips

Interview preparation tips for other job seekers - Give a shot

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was 11 am. Platform was quite well.

  • Q1. Rat in a Maze

    You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The maze would be given in the form of a...

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered by CodingNinjas
  • Q2. Minimum Cost to Destination

    You have been given an N*M matrix where there are 'N' rows and 'M' columns filled with '0s' and '1s'.


    '1' means you can use the cell,...

  • Ans. Backtracking

    Maintain a visited array and try to explore all the possibilities with the help of backtracking.

    1. Start with (0, 0) and mark it as visited and try to move in all 4 directions.
    2. Say at any point we are at (i, j) then the cost of reaching (x,y) will be the minimum of these four cases.
      1. Option 1 -  Left: cost of reaching from (i, j-1)
      2. Option 2 - Right: cost of reaching from (i, j+1)
      3. Option 3 - Up: 1 + cost of rea...
  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAOYO interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice data structure based questions.
Tip 2 : OOPS is very important.
Tip 3 : Prepare OS and DBMS for mcq.:

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Keep it short.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Referral and was interviewed before Jul 2021. There were 2 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 - HR 

(1 Question)

  • Q1. About Yourself. About work environment and flexibility.

Interview Preparation Tips

Interview preparation tips for other job seekers - Will get to learn about operational environment and work culture
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Your past experiences

I applied via Other and was interviewed before Jan 2017. There was 1 interview round.

Interview Preparation Tips

General Tips: I had applied for an internship under the premises of Holiday inn, Goa. So i had telephonic interview with the HR of Holiday Inn resorts, Goa. The first question she asked was that why did i wanna do my internship all the way in Goa?
Skills: Communication, Body Language, Analytical Skills, Time Management
Duration: <1 week

I was interviewed in Dec 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

  • Q1. Detect Cycle in a Directed Graph

    Given a directed graph, check whether the graph contains a cycle or not. Your function should return true if the given graph contains at least one cycle, else return false.

    ...
  • Ans. 

    I used DFS from every unvisited node. There is a cycle in a graph only if there is a back edge present in the graph.
    To find the back edge to any of its ancestor keep a visited array and if there is a back edge to any visited node then there is a loop and return true.

  • Answered by CodingNinjas
  • Q2.  Next Permutation

    You have been given a permutation of ‘N’ integers. A sequence of ‘N’ integers is called a permutation if it contains all integers from 1 to ‘N’ exactly once. Your task is to rearrange the...

  • Ans. 

    Traverse from right and find the first item that is not following the descending order.
    Swap the found character with closest greater (or smallest greater) element on right side of it.
    After swapping, sort the string after the position of character found.

  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Validate BST

    Given a binary tree with N number of nodes, check if that input tree is BST (Binary Search Tree) or not. If yes, return true, return false otherwise.

    A binary search tree (BST) is a binary t...

  • Ans. 

    I gave him two three approaches.
    Brute force
    using utility class
    using in-order traversal:

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaBTech(IT, EC), Dual (IT & EC) with no active backlog.OYO interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Oops, System Design, Data Base, NetworksTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare Data Structures
Tip 2 : Solve atleast 300-400 problems
Tip 3 : Prepare computer science subjects for solving MCQ's

Application resume tips for other job seekers

Tip 1 : Projects around oops would be great
Tip 2 : Be confident about everything you write

Final outcome of the interviewSelected

Skills evaluated in this interview

Ihg Group Interview FAQs

How to prepare for Ihg Group Intern 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 Ihg Group. The most common topics and skills that interviewers at Ihg Group expect are Data Analysis, HR, Hotel, Job Evaluation and Problem Solving.

Tell us how to improve this page.

People are getting interviews through

based on 1 Ihg Group interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Ihg Group Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Senior Analyst
259 salaries
unlock blur

₹3.4 L/yr - ₹8 L/yr

Specialist
217 salaries
unlock blur

₹5 L/yr - ₹9.5 L/yr

Team Lead
154 salaries
unlock blur

₹5.1 L/yr - ₹14 L/yr

Analyst
118 salaries
unlock blur

₹2.8 L/yr - ₹5 L/yr

Assistant Manager
96 salaries
unlock blur

₹8 L/yr - ₹19.5 L/yr

Explore more salaries
Compare Ihg Group with

Marriott International

4.3
Compare

Hilton

4.3
Compare

AccorHotels

4.4
Compare

Hyatt Regency

4.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview