Upload Button Icon Add office photos

Filter interviews by

Kuoni Travel Interview Questions and Answers

Updated 3 Dec 2020

Kuoni Travel Interview Experiences

1 interview found

I applied via Referral

Interview Questionnaire 

1 Question

  • Q1. It's about Family & Academic background

Interview Preparation Tips

Interview preparation tips for other job seekers - It's an good company

Executive Accountant Interview Questions asked at other Companies

Q1. What is P2P cycle , 3 way match , and what will you do if Approvals are missing in case of Non PO Invoices.
View answer (4)

Interview questions from similar companies

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

I was interviewed before Mar 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Audit and tax related questions
  • Q2. Genral question related to audit and tax
Round 2 - One-on-one 

(2 Questions)

  • Q1. Behavioral question
  • Q2. Asked about previous company
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Why should we hire you?
Round 2 - Technical 

(2 Questions)

  • Q1. VLOOKUP, HLOOKUP, XLOOKUP, SUMIF(S), COUNTIF(S), PIVOT TABLES, CONDITIONAL FORMATTING. Other basic excel questions
  • Q2. Journal Entries for GL adjustment, intercompany transfer, Revenue recognition, deffered and accrual concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Mat jao bakwas culture h.. ye tmhari basic needs ka hi bhit advantage lenge aur tmse gadhe ki tarah kaam krvayenge aur bolenge itna koi kaam thodi kr sakta h 🤣
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. GDS Commands
  • Q2. Airline Terminals and Airport Codes
Round 2 - Coding Test 

Sabre Commands to Check Availability

Round 3 - Coding Test 

Blocking and Booking Tickets

Round 4 - Coding Test 

Commands to Check Fare rules

Round 5 - Coding Test 

Checking Availability

Round 6 - Coding Test 

Infant and Child title

Round 7 - Technical 

(2 Questions)

  • Q1. About Airport Terminals
  • Q2. About Encode and Decode in GDS
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Design a minimum stack that supports the following operations: push, pop, top, and retrieving the minimum element in constant time.
  • Ans. 

    Design a stack that supports push, pop, top, and retrieving minimum element in constant time.

    • Use two stacks - one to store the actual elements and another to store the minimum values encountered so far

    • When pushing an element, check if it is smaller than the current minimum and if so, push it to the minimum stack

    • When popping an element, check if it is the current minimum and if so, pop from the minimum stack as well

    • Top ...

  • Answered by AI
  • Q2. Given an integer array of size n, find the maximum circular subarray sum. A circular array means that the end of the array connects back to the beginning. The solution should consider both the non-circular...
  • Ans. 

    Find the maximum circular subarray sum in an integer array.

    • Calculate the non-circular maximum subarray sum using Kadane's algorithm.

    • Calculate the circular maximum subarray sum by subtracting the minimum subarray sum from the total sum.

    • Compare the non-circular and circular maximum subarray sums to get the overall maximum sum.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for MakeMyTrip Software Developer interview:
  • stack
  • kadane's algorithm
Interview preparation tips for other job seekers - A solid approach to preparing for data structures and algorithms (DSA) is to use LeetCode as a primary resource.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Assignment 

Utilizing scenarios to assess English language proficiency.

Round 2 - Technical 

(2 Questions)

  • Q1. How does your understanding of the job description align with your experience and resume?
  • Q2. What are your expectations regarding Fragomen?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough when reviewing the job description and resume.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What do you know about travelling
  • Ans. 

    Travelling involves moving from one place to another for various purposes such as leisure, business, or exploration.

    • Travelling can be for leisure, business, exploration, or visiting family and friends.

    • It allows individuals to experience new cultures, cuisines, and landscapes.

    • Travelling can be domestic or international, by various modes of transportation like planes, trains, cars, or ships.

    • It can involve staying in hote...

  • Answered by AI
  • Q2. What do you know about kesari travels
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are the mother sauces in classical cuisine, and how are they characterized?
  • Q2. Can you tell me about yourself?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(5 Questions)

  • Q1. What is your name?
  • Ans. 

    My name is John Smith.

    • My first name is John.

    • My last name is Smith.

    • I go by the name John Smith.

  • Answered by AI
  • Q2. Your branch in college?
  • Ans. 

    I majored in Business Administration with a focus on Operations Management.

    • Studied courses like Supply Chain Management, Production Planning, and Inventory Control

    • Participated in case competitions related to optimizing production processes

    • Completed internships at manufacturing companies to gain hands-on experience

  • Answered by AI
  • Q3. What is your fathers name?
  • Ans. 

    My father's name is John Smith.

    • His first name is John.

    • His last name is Smith.

    • He goes by the name John Smith.

    • He is known as Mr. Smith in his workplace.

  • Answered by AI
  • Q4. Write a sql code for having
  • Ans. 

    SQL code for having clause

    • Use the HAVING clause to filter groups based on aggregate functions

    • It is used with the GROUP BY clause

    • Example: SELECT department, AVG(salary) FROM employees GROUP BY department HAVING AVG(salary) > 50000;

  • Answered by AI
  • Q5. What is the difference between where and having
  • Ans. 

    WHERE is used to filter rows before grouping or aggregating, while HAVING is used to filter groups after grouping or aggregating.

    • WHERE is used with SELECT, UPDATE, DELETE statements to filter rows based on a condition

    • HAVING is used with GROUP BY clause to filter groups based on a condition

    • WHERE is applied before the grouping operation, while HAVING is applied after the grouping operation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - notting very simple to join this company

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is your previous role

Tell us how to improve this page.

Interview Questions from Similar Companies

MakeMyTrip Interview Questions
3.7
 • 122 Interviews
BCD Travel Interview Questions
4.3
 • 111 Interviews
Thomas Cook Interview Questions
3.7
 • 44 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Riya Travel Interview Questions
3.6
 • 10 Interviews
View all

Kuoni Travel Reviews and Ratings

based on 32 reviews

4.8/5

Rating in categories

4.7

Skill development

4.7

Work-life balance

4.7

Salary

4.7

Job security

4.7

Company culture

4.7

Promotions

4.7

Work satisfaction

Explore 32 Reviews and Ratings
Operations Executive
6 salaries
unlock blur

₹5 L/yr - ₹5.3 L/yr

Branch Incharge
4 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Deputy Manager
3 salaries
unlock blur

₹4.5 L/yr - ₹5 L/yr

Sales Executive
3 salaries
unlock blur

₹1.8 L/yr - ₹4.3 L/yr

Executive
3 salaries
unlock blur

₹1.8 L/yr - ₹5.3 L/yr

Explore more salaries
Compare Kuoni Travel with

MakeMyTrip

3.7
Compare

Thomas Cook

3.7
Compare

BCD Travel

4.3
Compare

Yatra

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