Upload Button Icon Add office photos

Filter interviews by

TripFactory Senior Supervisor Interview Questions and Answers

Updated 7 Dec 2023

TripFactory Senior Supervisor Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement

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. Mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm
Round 3 - HR 

(2 Questions)

  • Q1. What is your weakness
  • Q2. What is your fav sports

Interview Preparation Tips

Interview preparation tips for other job seekers - give brave answer

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Why have been layed of after working for 9 yrs in TC

Interview Questionnaire 

1 Question

  • Q1. Back ground, projects undertaken, motive for moving to the role, team player examples, knowledge of domestic or international destinations , knowledge of Hotel industry
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced Senior Manager with a proven track record in leading teams and driving business growth.

    • Over 10 years of experience in management roles

    • Strong leadership skills and ability to motivate teams

    • Successful track record of achieving targets and KPIs

    • Experience in developing and implementing strategic plans

    • Excellent communication and interpersonal skills

  • Answered by AI
  • Q2. How will you align your previous experience with our requirements
  • Ans. 

    I will highlight relevant experiences and skills that directly align with the requirements of the position.

    • Highlight specific achievements and projects from previous roles that demonstrate skills needed for this position

    • Discuss how previous leadership roles have prepared me for managing teams in this new position

    • Emphasize any relevant industry knowledge or certifications that align with the requirements

    • Showcase adaptab...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not trust the General Manager HR
She has zero knowledge about Human Resources
The entire HR team is useless
These people need to go back to college and brush up their sourcing, selection and recruitment lessons
Warning General Manager HR is hopeless

I applied via Newspaper Ad and was interviewed in Aug 2022. 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 

(2 Questions)

  • Q1. Tell me about u self What About u r ex role
  • Q2. What about u r pricies role

Interview Preparation Tips

Interview preparation tips for other job seekers - How was experience in that organization
How was i colouges
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jun 2022. There were 7 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 - Aptitude Test 

It Was written test on telo where we need to share our credential related industry knowledge

Round 3 - HR 

(1 Question)

  • Q1. Varification of credentials and reference check and experience related case study
Round 4 - One-on-one 

(2 Questions)

  • Q1. Meet with cluster manager
  • Q2. Knowledge about theme based fnb sale and promotion and knowledge about membership program
Round 5 - HR 

(1 Question)

  • Q1. Zoom interview with corporate hr
Round 6 - Behavioral 

(1 Question)

  • Q1. Zoom interview with ceo
Round 7 - HR 

(1 Question)

  • Q1. Zoom interview with chif corporate hr

Interview Preparation Tips

Interview preparation tips for other job seekers - Itvwas a very lengthy process and took nearly one month time.

Interview Questionnaire 

1 Question

  • Q1. They asked me one question.why select in this company.

I applied via Monster and was interviewed in Dec 2017. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They are asked question tell about yourself in general questions.

Interview Preparation Tips

General Tips: I attend in interview last candidate so just 5 minits faced HR interview.
Skills: Analytical Skills
Duration: 1-4 weeks

I was interviewed in Apr 2017.

Interview Questionnaire 

1 Question

  • Q1. Family ,occupation,motivation & experience

Interview Preparation Tips

Round: HR
Experience: Done

Round: HR Interview
Experience: Done

Round: Branch manager
Experience: Done

Skills: Sales, Client Pitch Presentation

I was interviewed 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

TripFactory Interview FAQs

How many rounds are there in TripFactory Senior Supervisor interview?
TripFactory interview process usually has 3 rounds. The most common rounds in the TripFactory interview process are HR and Resume Shortlist.

Tell us how to improve this page.

TripFactory Senior Supervisor Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

MakeMyTrip Interview Questions
3.6
 • 122 Interviews
Cogoport Interview Questions
2.9
 • 53 Interviews
Thomas Cook Interview Questions
3.7
 • 44 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Treebo Hotels Interview Questions
3.3
 • 22 Interviews
Cleartrip Interview Questions
3.4
 • 18 Interviews
Simpl Interview Questions
2.8
 • 17 Interviews
EazyDiner Interview Questions
3.2
 • 14 Interviews
View all
Travel Consultant
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Destination Service Specialist
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Executive
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Key Account Manager
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare TripFactory with

MakeMyTrip

3.7
Compare

Yatra

3.4
Compare

Cleartrip

3.4
Compare

Goibibo

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