Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Teletext Holidays Team. If you also belong to the team, you can get access from here

Teletext Holidays Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Teletext Holidays Interview Questions and Answers

Updated 16 Feb 2024

Teletext Holidays Interview Experiences

Popular Designations

6 interviews found

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

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

We had a set of questions related to travel sales agent and then some grammar skills and written communication on how to show empathy when a customer complaints.

Round 2 - HR 

(1 Question)

  • Q1. About yourself and your previous roles
Round 3 - One-on-one 

(1 Question)

  • Q1. Again about yourself and your previous roles in a extensive manner by manager.

Interview Preparation Tips

Topics to prepare for Teletext Holidays Telesales Officer interview:
  • Hotel types
  • Flight
  • Grammar
Interview preparation tips for other job seekers - Prepare well about sales and travel industry.

Telesales Officer Interview Questions asked at other Companies

Q1. Tell me about Delhi Metro? To check communication skills?
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 10 Sep 2022

I applied via Naukri.com

Round 1 - One-on-one 

(2 Questions)

  • Q1. Security related all question
  • Q2. Safety questions,safety certificate,first aid,CPR
Round 2 - Group Discussion 

Security related all questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Naukari plat form is good thanks to naukari.com

I applied via Naukri.com and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Previous JD, Accounts Related, Reconciliation Related

Interview Preparation Tips

Interview preparation tips for other job seekers - Great and HR was too cordinated and well concerned

Senior Accounts Executive Interview Questions asked at other Companies

Q1. How To Prepare Cash Flow, What Is GR-IR, Which Type of Invoice Booking Has Done, What TDS Rate Do You Know.
View answer (1)

I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Who was my inspirational character?
  • Q2. What kind of goal you set as your destiny?
  • Ans. 

    My goal as a Travel Advisor is to help people create unforgettable travel experiences and discover new destinations.

    • Assisting clients in planning their trips and providing them with personalized recommendations

    • Ensuring that clients have all the necessary information and resources for a smooth and enjoyable travel experience

    • Staying updated on the latest travel trends and destinations to offer the best advice

    • Building str...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was so nice to explore my self about nature of character and also sharing of my educational qualifications and my hobbies and seeking of interest on such kind and also struggles what I was faced and also share my inspirational personality with an unique example and also shared my strong desire to achieve heights in my career with a strong goal.

Travel Advisor Interview Questions asked at other Companies

Q1. Which destination knowledge you have?
View answer (1)

Teletext Holidays interview questions for popular designations

 Travel Advisor

 (2)

 Telesales Officer

 (1)

 Senior Accounts Executive

 (1)

Interview Questionnaire 

1 Question

  • Q1. Just random questions like tell me about yourself etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - During salary discussion NEVER EVER STEP DOWN as a candidate because they can afford upto 25k so don't hesitate to ask
Infact I would say insist.

Travel Advisor Interview Questions asked at other Companies

Q1. Which destination knowledge you have?
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 16 Nov 2020

I applied via Walk-in and was interviewed before Nov 2019. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I don't remember all but here are some questions which were asked. Most basic question: Tell me something about yourself, regarding your previous job experience, my previous salary, how dedicated I am and ...

Interview Preparation Tips

Interview preparation tips for other job seekers - I would suggest that you be confident about what you share during the interview, be firm on your decisions, never lie about your experience because you will find difficult to answer everything about you past experience which is a lie. Speak more and be very clear for the interviewer to understand properly, also don't be too quick to answer questions, just take a breath, think twice for a better answer on the question and then reply. Speaking more will reduce more questions from the interviewer. Lastly, do prepare/practice as much as you can before going for the interview and once again, be CONFIDENT!

Jobs at Teletext Holidays

View all

Interview questions from similar companies

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

I appeared for an interview in Jun 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is current responsibility
  • Q2. What is your goal

Interview Preparation Tips

Interview preparation tips for other job seekers - Good, but be prepared

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

Teletext Holidays Interview FAQs

How many rounds are there in Teletext Holidays interview?
Teletext Holidays interview process usually has 2-3 rounds. The most common rounds in the Teletext Holidays interview process are One-on-one Round, Group Discussion and Aptitude Test.
How to prepare for Teletext Holidays 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 Teletext Holidays. The most common topics and skills that interviewers at Teletext Holidays expect are bpo, outbound, Sales, Calling and inbound.
What are the top questions asked in Teletext Holidays interview?

Some of the top questions asked at the Teletext Holidays interview -

  1. safety questions,safety certificate,first aid,...read more
  2. Security related all quest...read more

Tell us how to improve this page.

Teletext Holidays Interview Process

based on 5 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

MakeMyTrip Interview Questions
3.6
 • 122 Interviews
BCD Travel Interview Questions
4.3
 • 111 Interviews
Expedia Group Interview Questions
3.8
 • 75 Interviews
Thomas Cook Interview Questions
3.8
 • 44 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Cleartrip Interview Questions
3.4
 • 18 Interviews
Goibibo Interview Questions
4.3
 • 6 Interviews
Cox & Kings Interview Questions
3.7
 • 6 Interviews
View all

Teletext Holidays Reviews and Ratings

based on 142 reviews

3.9/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.6

Salary

2.9

Job security

3.8

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 142 Reviews and Ratings
Urgent hiring For Sales Advisors(International Voice Process)

Hyderabad / Secunderabad,

Kondapur

1-6 Yrs

₹ 2-5.5 LPA

Explore more jobs
Travel Advisor
83 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Senior Travel Advisor
37 salaries
unlock blur

₹2.5 L/yr - ₹6.5 L/yr

Finance Executive
32 salaries
unlock blur

₹2.7 L/yr - ₹5.5 L/yr

Software Engineer
25 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Customer Service Executive
23 salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Teletext Holidays with

MakeMyTrip

3.7
Compare

Yatra

3.4
Compare

Cleartrip

3.5
Compare

Goibibo

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