Upload Button Icon Add office photos

BCD Travel

Compare button icon Compare button icon Compare

Filter interviews by

BCD Travel Customer Service Representative 1 Interview Questions and Answers

Updated 19 Oct 2023

BCD Travel Customer Service Representative 1 Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral

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 - Technical 

(2 Questions)

  • Q1. Geographical knowledge specially for North America region
  • Q2. 1. US City Airport codes. 2. International route from US or to US. 3. Ticketing Commands. 4. Itinerary Commands.
  • Ans. 

    The candidate is asked about US City Airport codes, international routes to/from the US, ticketing commands, and itinerary commands.

    • US City Airport codes include JFK (New York), LAX (Los Angeles), ORD (Chicago), ATL (Atlanta), etc.

    • International routes from the US include JFK to LHR (London Heathrow), LAX to NRT (Tokyo Narita), ORD to CDG (Paris Charles de Gaulle), etc.

    • Ticketing commands may include issuing tickets, cha...

  • Answered by AI

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. Asking for work experience .
  • Q2. SKILLS AND WEEAKNESS
Round 3 - One-on-one 

(2 Questions)

  • Q1. WHAT YOU SEE IN YOURSELF
  • Q2. HOW YOU OVERCOME CHALLANGES

Interview Preparation Tips

Interview preparation tips for other job seekers - WORK FROM HOME OPPORTINITIES AND COMPANY GOODWILL CHECK BEFORE

I applied via Company Website and was interviewed in Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Due to coronavirus lockdown why GBT Team leaders not accepted to continued the job in GBT.
  • Q2. If team is happy to continue I can rejoin immediately.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was technical one but it was majorly a stress teast.

I applied via Walk-in and was interviewed before Aug 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 - Aptitude Test 

General Questions regards my education questions and answers, hobbies and some sport's questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Looking urgent job because since three years I have waisted my lime due to Covide-19 situation.

I applied via LinkedIn and was interviewed in May 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 - Technical 

(2 Questions)

  • Q1. Interview was bit tough, technical questions related to previous job were asked
  • Q2. World and India geographical knowledge is must

Interview Preparation Tips

Interview preparation tips for other job seekers - Speak confidently with interviewer, share them your past work experience, skills and expertise you have.

I applied via Naukri.com and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Past organization GDS experience
  • Q2. Self introduction and past organization experience
  • Q3. All the documents formalities

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was a technical one but was majority a stress test it lasted for 1 hour and 10 minutes.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about your self
  • Ans. 

    I am a passionate traveler with extensive experience in planning and organizing trips for clients.

    • I have a strong knowledge of various travel destinations and accommodations

    • I excel in customer service and communication skills

    • I am proficient in using booking platforms and travel software

    • I have successfully planned and executed complex travel itineraries for clients

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Last work experience
Round 3 - One-on-one 

(1 Question)

  • Q1. Tell me end to end operation
  • Ans. 

    End to end operation refers to the complete process from start to finish in a particular operation or project.

    • Start with understanding client requirements

    • Research and plan the trip itinerary

    • Book flights, accommodations, and activities

    • Provide necessary travel documents and information to the client

    • Ensure smooth travel experience and handle any issues that may arise

    • Follow up with the client for feedback and future bookin

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. The HR asked to give the introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - I spent 2hrs and Rs 300 to travel at the location. The interviewer asked me only one question introduce yourself. While I was giving my introduction, the interviewer was busy in his phone. I ended introduction in 7 mins and he said all good from my side will get back to you for the next round of interview. Waited for 5 days, no update yet. Request the higher management of the organization to stop wasting our time and money.

I was interviewed before Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Questions on aptitude, English, logical reasoning, C/C++ and 5 coding ques. (only pseudo code).

  • Q1. 

    Minimum Jumps Problem Statement

    Bob and his wife are in the famous 'Arcade' mall in the city of Berland. This mall has a unique way of moving between shops using trampolines. Each shop is laid out in a st...

  • Ans. 

    Find the minimum number of trampoline jumps Bob needs to make to reach the final shop, or return -1 if it's impossible.

    • Use Breadth First Search (BFS) algorithm to find the minimum number of jumps required.

    • Keep track of the visited shops to avoid revisiting them.

    • If a shop has an Arr value of 0, it is impossible to reach the final shop.

    • Return -1 if the final shop cannot be reached.

  • Answered by AI
  • Q2. 

    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 S that contains all characters in X.

    • Use a sliding window approach to find the smallest window in S containing all characters of X.

    • Maintain a hashmap to keep track of characters in X and their frequencies in the current window.

    • Slide the window to the right, updating the hashmap and shrinking the window until all characters in X are present.

    • Return the smallest window found.

    • Example: S = 'abd

  • Answered by AI
  • Q3. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from start to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Return paths in alphabetical order as a list of strings.

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Questions based on OOPS were asked in this round.

  • Q1. What is a virtual function?
  • Ans. 

    A virtual function is a function in a base class that is declared using the keyword 'virtual' and can be overridden by a function with the same signature in a derived class.

    • Virtual functions allow for dynamic polymorphism in C++

    • They are used in inheritance to achieve runtime polymorphism

    • Virtual functions are declared in a base class and can be overridden in derived classes

    • They are called based on the type of object bei...

  • Answered by AI
  • Q2. What are the types of polymorphism in Object-Oriented Programming?
  • Ans. 

    Types of polymorphism in OOP include compile-time (method overloading) and runtime (method overriding) polymorphism.

    • Compile-time polymorphism is achieved through method overloading, where multiple methods have the same name but different parameters.

    • Runtime polymorphism is achieved through method overriding, where a subclass provides a specific implementation of a method that is already defined in its superclass.

    • Polymor...

  • Answered by AI
  • Q3. What is the difference between deep copy and shallow copy?
  • Ans. 

    Deep copy creates a new object and recursively copies all nested objects, while shallow copy creates a new object and copies only the references to nested objects.

    • Deep copy creates a new object and copies all nested objects, while shallow copy creates a new object and copies only the references to nested objects.

    • In deep copy, changes made to the original object do not affect the copied object, while in shallow copy, ch...

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

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 - 5 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 Preparation Tips

Skill Tips: To crack Yatra interview Java, Data Structures and Algorithms concepts should be clear.
Skills: Java, Data structures, Algorithm
College Name: na

BCD Travel Interview FAQs

How many rounds are there in BCD Travel Customer Service Representative 1 interview?
BCD Travel interview process usually has 2 rounds. The most common rounds in the BCD Travel interview process are Resume Shortlist and Technical.
What are the top questions asked in BCD Travel Customer Service Representative 1 interview?

Some of the top questions asked at the BCD Travel Customer Service Representative 1 interview -

  1. 1. US City Airport codes. 2. International route from US or to US. 3. Ticketing...read more
  2. Geographical knowledge specially for North America reg...read more

Tell us how to improve this page.

BCD Travel Customer Service Representative 1 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

MakeMyTrip Interview Questions
3.7
 • 122 Interviews
Expedia Group Interview Questions
3.8
 • 75 Interviews
Thomas Cook Interview Questions
3.7
 • 44 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Pickyourtrail Interview Questions
3.6
 • 20 Interviews
StayVista Interview Questions
2.9
 • 13 Interviews
View all
Travel Consultant
279 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Travel Consultant
155 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
101 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Travel Associate
66 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Travel Associate
58 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare BCD Travel with

CWT

3.9
Compare

American Express Global Business Travel

4.3
Compare

Expedia Group

3.8
Compare

Booking Holdings

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