Upload Button Icon Add office photos

Filter interviews by

Indian Railway Catering and Tourism Interview Questions and Answers

Updated 1 Aug 2024

Indian Railway Catering and Tourism Interview Experiences

Popular Designations

8 interviews found

I applied via AmbitionBox and was interviewed in Jul 2022. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - If any requirement plz let me know. I have 4years above experience and I am currently working oberoi flight service.

Catering Supervisor Interview Questions asked at other Companies

Q1. What type of food items service in railway?
View answer (4)

HCLTech

Workplace transformation starts with you

Explore various roles and find your spark with us

Interview Questions & Answers

user image Anonymous

posted on 27 Mar 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

Interview Preparation Tips

Interview preparation tips for other job seekers - WhatsApp message stop your last duty
Indian Railway Catering and Tourism Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

Interview Preparation Tips

Interview preparation tips for other job seekers - Wherever you work, work with honesty and integrity. Keep learning keep moving forward. don't wait One day success will surely come.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Assistant Manager Interview Questions asked at other Companies

Q1. You are Handling cash operations then how you manage operations with sales ?
View answer (88)

Indian Railway Catering and Tourism interview questions for popular designations

 Canteen Supervisor

 (1)

 Customer Care Executive

 (1)

 Assistant Manager

 (1)

 Railway Engineer

 (1)

 Catering Supervisor

 (1)

 Hospitality Supervisor

 (1)

Railway Engineer Interview Questions & Answers

user image Prasenjit Pal

posted on 12 Oct 2023

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

I applied via Company Website and was interviewed before Oct 2022. There were 3 interview rounds.

Interview Preparation Tips

Topics to prepare for Indian Railway Catering and Tourism Railway Engineer interview:
  • Railways
  • Airlines
  • Roads
Interview preparation tips for other job seekers - Pls be careful and do not pay any money to any agency or person promising to you about jobs.

Railway Engineer Interview Questions asked at other Companies

Q1. How match capacity consume a battery bank
View answer (2)

Interview Questionnaire 

1 Question

  • Q1. Basic questions pucha the

Customer Care Executive Interview Questions asked at other Companies

Q1. What would you do if you win 1billion dollar lottey?
View answer (39)

Interview Questionnaire 

1 Question

  • Q1. When will come to the vaccant in canteen supervisor

Canteen Supervisor Interview Questions asked at other Companies

Q1. Do you know how to make tea
View answer (2)

Interview Questions & Answers

user image Anonymous

posted on 25 Dec 2022

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2021. There were 2 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Never join IRCTC . It will ruin your skills and future

Interview questions from similar companies

I appeared for an interview before Feb 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 65 minutes
Round difficulty - Easy

There were 2 sections – 
Aptitude and Logical Reasoning and MCQ based on Java question ,C++, coding for 20 min and 45 min respectively.
Section A- Not very difficult to clear this round although less time was a problem.
Section B- It contains 15 multiple choice question on c/c++,java and 4 simple coding questions

  • Q1. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next pointer points back to a previous node.

    • Traverse the linked list using two pointers, one moving at double the speed of the other.

    • If the two pointers meet at any point, there is a cycle in the linked list.

    • Use Floyd's Cycle Detection Algorithm for O(N) time complexity and O(1) space complexity.

  • Answered by AI
Round 2 - Coding Test 

(3 Questions)

Round duration - 75 minutes
Round difficulty - Medium

It was an online coding test in which 3 coding question were given.

  • Q1. 

    Smallest Window Problem Statement

    Given two strings, S and X, your task is to find the smallest substring in S that contains all the characters present in X.

    Example:

    Input:
    S = "abdd", X = "bd"
    Outpu...
  • Ans. 

    Find the smallest substring in string S that contains all characters in string X.

    • Iterate through string S and keep track of characters in X found in a window

    • Use two pointers to maintain the window and slide it to find the smallest window

    • Return the smallest window containing all characters in X

  • Answered by AI
  • Q2. 

    Smallest Integer Not Representable as Subset Sum

    Given a non-decreasing sorted array ARR of N positive numbers, determine the smallest positive integer that cannot be expressed as the sum of elements from...

  • Ans. 

    Find the smallest positive integer that cannot be expressed as the sum of elements from any proper subset of a non-decreasing sorted array of positive numbers.

    • Start with the smallest possible integer that cannot be represented, which is 1.

    • Iterate through the array and update the smallest integer that cannot be represented.

    • If the current element is greater than the smallest integer that cannot be represented, return tha...

  • Answered by AI
  • Q3. 

    Minimum Steps for a Knight to Reach Target

    Given a square chessboard of size 'N x N', determine the minimum number of moves a Knight requires to reach a specified target position from its initial position...

  • Ans. 

    Calculate the minimum number of moves a Knight needs to reach a target position on a chessboard.

    • Implement a function that takes knight's starting position, target position, and chessboard size as input

    • Use breadth-first search algorithm to find the shortest path for the Knight

    • Consider all possible 8 movements of the Knight on the chessboard

    • Return the minimum number of moves required for the Knight to reach the target po

  • Answered by AI
Round 3 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It started with a discussion on the programs given in coding round. They asked me about my interest field after that they directly jumped into Networking, Linux and Ethical Hacking part looking my interest domain. They asked me various question on networking and linux.
Then they asked me to code a simple c program

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node.

    • Keep track of the current, previous, and next nodes while reversing the linked list.

    • Update the head of the reversed linked list as the last node encountered during reversal.

  • Answered by AI
  • Q2. What are the port numbers of protocols such as FTP and SMTP?
  • Ans. 

    FTP uses port number 21 and SMTP uses port number 25.

    • FTP uses port 21 for data transfer and port 20 for control information.

    • SMTP uses port 25 for email communication.

    • Understanding port numbers is important for network communication.

  • Answered by AI
  • Q3. Can you explain the OSI Model?
  • Ans. 

    The OSI Model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven layers.

    • The OSI Model stands for Open Systems Interconnection Model.

    • It consists of seven layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has specific functions and communicates with the adjacent layers.

    • Example: Layer 1 (Physical) deals with physi...

  • Answered by AI
  • Q4. How do you copy files in Linux?
  • Ans. 

    To copy files in Linux, you can use the 'cp' command.

    • Use the 'cp' command followed by the source file and destination directory to copy a file.

    • To copy a directory and its contents, use the '-r' flag with the 'cp' command.

    • You can also use wildcards like '*' to copy multiple files at once.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMakeMyTrip interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

8 Questions

  • Q1. Find out the subset of an array of continuous positive numbers from a larger array whose sum of of the elements is larger in comparision to other subset. eg: {1,2 5 -7, 2 5} .The two subarrays are {1,2,5} ...
  • Ans. 

    Find the subset of an array with the largest sum of continuous positive numbers.

    • Iterate through the array and keep track of the current sum and the maximum sum seen so far.

    • If the current element is positive, add it to the current sum. If it is negative, reset the current sum to 0.

    • Also keep track of the start and end indices of the maximum sum subset.

    • Return the subset using the start and end indices.

  • Answered by AI
  • Q2. Given two classes C1 and C2 which are almost same.(remember not exactly same). You want to choose best among these classes so that it can be use as key in hashmap. What question will you ask regarding two ...
  • Q3. You are given two strings s1 and s2.Now, find the smallest substring in s1 containing all characters of s2
  • Ans. 

    Find smallest substring in s1 containing all characters of s2.

    • Create a hash table of characters in s2

    • Use sliding window technique to find smallest substring in s1

    • Check if all characters in s2 are present in the substring

    • Update the smallest substring if a smaller one is found

  • Answered by AI
  • Q4. Questions on OOPS (almost all the concepts were covered like polymorphism, overriding, overloading, inheritance, concept of virtual fxns etc.)
  • Q5. Write algo for reversing a linked list
  • Ans. 

    Algorithm to reverse a linked list

    • Create a new empty linked list

    • Traverse the original linked list and insert each node at the beginning of the new list

    • Return the new list

  • Answered by AI
  • Q6. What is lazy loading? Advantages and disadvantages of the same?
  • Ans. 

    Lazy loading is a technique used to defer the loading of non-critical resources until they are needed.

    • Advantages: faster initial page load, reduced bandwidth usage, improved user experience

    • Disadvantages: increased complexity, potential for slower subsequent page loads, difficulty with SEO

    • Examples: images, videos, and other media files can be loaded only when they are visible on the screen

  • Answered by AI
  • Q7. How ajax works? Difference between angular js and jquery?
  • Ans. 

    Ajax is a technique for creating fast and dynamic web pages. AngularJS is a framework for building dynamic web applications, while jQuery is a library for simplifying HTML DOM traversal and manipulation.

    • Ajax stands for Asynchronous JavaScript and XML

    • It allows web pages to be updated asynchronously by exchanging data with a web server behind the scenes

    • AngularJS is a JavaScript framework that extends HTML with new attrib...

  • Answered by AI
  • Q8. Design a traffic light system?
  • Ans. 

    A traffic light system controls the flow of traffic at intersections.

    • The system consists of three lights: red, yellow, and green.

    • Each light has a specific duration for which it stays on.

    • The system also includes sensors to detect the presence of vehicles and pedestrians.

    • The duration of each light can be adjusted based on traffic patterns.

    • The system can be connected to a central control system for remote monitoring and m

  • Answered by AI

Interview Preparation Tips

Skills: Javascript, Ajax, Angular JS, Jquery
College Name: na

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Indian Railway Catering and Tourism Interview FAQs

How many rounds are there in Indian Railway Catering and Tourism interview?
Indian Railway Catering and Tourism interview process usually has 2 rounds. The most common rounds in the Indian Railway Catering and Tourism interview process are Resume Shortlist, HR and One-on-one Round.
How to prepare for Indian Railway Catering and Tourism 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 Indian Railway Catering and Tourism. The most common topics and skills that interviewers at Indian Railway Catering and Tourism expect are Guest Service, Hospitality, Railways, Guest Relations and Cabin Crew Activities.
What are the top questions asked in Indian Railway Catering and Tourism interview?

Some of the top questions asked at the Indian Railway Catering and Tourism interview -

  1. What type of food items service in railw...read more
  2. What is the dry i...read more
  3. When will come to the vaccant in canteen supervis...read more

Recently Viewed

INTERVIEWS

Indian Railway Catering and Tourism

No Interviews

INTERVIEWS

Indian Railway Catering and Tourism

No Interviews

SALARIES

Bharat Sanchar Nigam

INTERVIEWS

National Highways Authority of India

No Interviews

INTERVIEWS

National Highways Authority of India

No Interviews

COMPANY BENEFITS

Council of Scientific and Industrial Research

No Benefits

INTERVIEWS

National Highways Authority of India

No Interviews

SALARIES

Government of Maharashtra

SALARIES

Bharat Sanchar Nigam

Tell us how to improve this page.

Indian Railway Catering and Tourism Interview Process

based on 15 interviews

Interview experience

4.7
  
Excellent
View more

Sun Pharmaceutical Industries

Join us and thrive in a company culture that inspires and empowers.

Interview Questions from Similar Companies

Oyo Rooms Interview Questions
3.3
 • 218 Interviews
Air India Interview Questions
3.7
 • 151 Interviews
MakeMyTrip Interview Questions
3.6
 • 122 Interviews
Spicejet Interview Questions
3.6
 • 86 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Jet Airways Interview Questions
4.6
 • 21 Interviews
Cleartrip Interview Questions
3.4
 • 18 Interviews
Hyva Interview Questions
3.7
 • 15 Interviews
Goibibo Interview Questions
4.3
 • 6 Interviews
View all

Indian Railway Catering and Tourism Reviews and Ratings

based on 199 reviews

4.0/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

3.7

Salary

3.8

Job security

3.9

Company culture

3.2

Promotions

3.7

Work satisfaction

Explore 199 Reviews and Ratings
Hospitality Supervisor
54 salaries
unlock blur

₹2.7 L/yr - ₹4.7 L/yr

Data Entry Operator
20 salaries
unlock blur

₹0.8 L/yr - ₹3 L/yr

AIR Ticketing Executive
15 salaries
unlock blur

₹3 L/yr - ₹4.6 L/yr

Hospital Manager
11 salaries
unlock blur

₹3.6 L/yr - ₹4.4 L/yr

Accountant
10 salaries
unlock blur

₹2 L/yr - ₹4.1 L/yr

Explore more salaries
Compare Indian Railway Catering and Tourism with

MakeMyTrip

3.6
Compare

Yatra

3.4
Compare

Cleartrip

3.4
Compare

Oyo Rooms

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