Upload Button Icon Add office photos

Filter interviews by

Travel Corporation India Interview Questions and Answers

Updated 23 Nov 2024

Travel Corporation India Interview Experiences

Popular Designations

4 interviews found

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

I applied via Job Portal and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Streams API questions related to Department and Employee. Get sorted employees acc to age. group employees seperated by Age
  • Q2. SQL Questions and queries basic to moderate
Round 2 - Assignment 

SpringBoot project to impement a post and get api, kind of complex format to give the output in
Department and Employee Entities and OnetoMany relationship and operations on multiple tables.
APIs : Save Employees & GetEligibleEmployee by a certain criteria.

Round 3 - One-on-one 

(2 Questions)

  • Q1. SQL Queries commonly asked like-> 2nd highest salary form last, employees with same salaries, Many to many relationships?
  • Q2. SpringBoot coding for saving employees and database shouldn't be called multiple times.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core sql and java and springboot handson should be there. AWS knowledge is a plus

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)

Tour Operator Interview Questions & Answers

user image Anonymous

posted on 16 Jun 2022

I applied via Referral and was interviewed in Jun 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 - One-on-one 

(1 Question)

  • Q1. My details about family and education

Interview Preparation Tips

Interview preparation tips for other job seekers - Need face to face interview for all candidate

Tour Operator Interview Questions asked at other Companies

Q1. City and airport codes in US
View answer (1)

I applied via Company Website and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell me something about your self
  • Q2. Why join this job
  • Q3. Your work experience
  • Q4. Job title and ctc

Interview Preparation Tips

Interview preparation tips for other job seekers - Prefer English and Hindi language

Assistant Sales Manager Interview Questions asked at other Companies

Q1. How much file are done in Hdfc bank in month
View answer (12)

Section Leader Interview Questions & Answers

user image Pradeep Kanchan

posted on 6 Jul 2022

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Group Discussion 

Connected to economic topic and projects

Round 3 - HR 

(1 Question)

  • Q1. Questions based on your jobs, your interests etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Economics current affairs and your contributions and justification towards your present assignments

Section Leader Interview Questions asked at other Companies

Q1. How do you manage manpower and machines?
View answer (1)

Travel Corporation India interview questions for popular designations

 Assistant Sales Manager

 (1)

 Section Leader

 (1)

 Java Developer

 (1)

 Tour Operator

 (1)

Jobs at Travel Corporation India

View all

Interview questions from similar companies

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

Interview Preparation Tips

Round: Test
Experience: 1. Rotate a matrix by 90 degrees clockwise.( He asked me have you heard of question.I said Yes.Then he asked me to code)2. Find vertical sum of nodes present in same vertical line in binary tree. ( He again asked me have you heard of question. I have heard it but didn’t remember the approach. It took some time and then I started telling my approach.He aasked me to write code and question regarding get sums from left to right , for which I made use of linked hashmap)
Overall It was very cool for me
Total Questions: 2

Round: Test
Experience: 1.Reverse K blocks of nodes in linked list.There are two interviewers this time, probably, guy was senior he was asking me question.He was very particular in coding. Checked every edge case.and asked me evrything.Initially I told the approach and then started coding.2.Find min in stack in O(1)Pretty straightforward written code.Again he checked all edge cases with my code.3. Then asked about counting sort and its code.4. And a simple question on array sorting.

Round: HR Interview
Experience: I thought this was last round as they have said like.She asked me about my strengths and challenges I faced.How I overcame through it1.Basic question on oops concepts.(runtime polymorphism).
2.Design tables for getting all employees under manager. I screwed it little bit.But some how I got answer which I was not satisfied as well.I was expecting result either yes/no.But they called me for another round of interview may be because of my expected salary which was high compared to my previous.

Round: Technical Interview
Experience: 1.Given “aaabbbccc” it should return “a3b3c3″ in place. Initially I explained brute force approach then he said array has 2n space.I was able to remember approach for quicksort and started explaining after which I grew confident on it.He was satisfied.Questions on time complexity of algo and space complexity discussions.2.Again a question on OOPs.This time I was completely wrong in answering it.I thought interview with yatra was closing for me.He was not satisified much with this.Luckily, there was another round with manager.

Round: Other Interview
Experience: 1.He asked me to find words which are having particular pattern.Then I said it was KMP algo. Can I explain it ?? I started explaining approach, may be he was busy with something, he asked me to write pseudo code.He left the room for 15 mins then he came back I had almost completed the code, which he was satisified.Some basic questions on spring ( my previous work was related to it). Then my expected salary and my position If I got selected in yatra were discussed.

College Name: NA

I applied via Company Website and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Oops concept, use of throws and exception, test cases for cash withdrawl at atm, booking ticket at railway test cases, spring boot annotations, jdbc questions, sql queries and programs on strings.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well before interview, be free and be yourself don't pretend to be a smart one just keep your confidence and answer all the questions, if you don't know the answer then please let them know.

I applied via Instahyre and was interviewed in Sep 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. FInd the max triplets such that i
  • Ans. 

    Find the max triplets such that i

    • Sort the array in ascending order

    • Iterate over the array and keep track of the maximum triplet

    • Return the maximum triplet

  • Answered by AI
  • Q2. Find the duplicate record in MySQL table
  • Ans. 

    Finding duplicate records in MySQL table

    • Use GROUP BY and HAVING clause to group and filter duplicate records

    • SELECT statement with COUNT(*) function can be used to count the number of occurrences

    • UNIQUE constraint can be added to the table to prevent duplicates

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Headout Senior Software Engineer interview:
  • Data Structures
  • Database
Interview preparation tips for other job seekers - Practice mediim level DS Algo from leetcode and also practices MySql question as well.

Skills evaluated in this interview

I appeared for an interview in Apr 2022.

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 - One-on-one 

(3 Questions)

  • Q1. Hahahshshhssjjsisiskjsnsnsbzb
  • Q2. Jsjsjsjsjjsjsnsnsnsnsnsnbs
  • Q3. Shbjshsnsnsbsbzbzbbsbsbshs

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi bi hsand btbbsb Bsnssbtstbtzbzbtbzzttbzztb
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

1.30
Basic profit/loss,percentages questions

Round 2 - Technical 

(4 Questions)

  • Q1. 1 hr Asked about closures, hoisting, map, hash
  • Q2. Closures and scopes
  • Q3. Dsa 2 sum problem
  • Q4. Projects and basicjs
Round 3 - HR 

(1 Question)

  • Q1. Basic related to location, timings

Travel Corporation India Interview FAQs

How many rounds are there in Travel Corporation India interview?
Travel Corporation India interview process usually has 2-3 rounds. The most common rounds in the Travel Corporation India interview process are Resume Shortlist, One-on-one Round and Group Discussion.
How to prepare for Travel Corporation India 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 Travel Corporation India. The most common topics and skills that interviewers at Travel Corporation India expect are Costing, Itinerary, Operations, Travel and Tour Packages.
What are the top questions asked in Travel Corporation India interview?

Some of the top questions asked at the Travel Corporation India interview -

  1. SQL Queries commonly asked like-> 2nd highest salary form last, employees with...read more
  2. Streams API questions related to Department and Employee. Get sorted employees...read more
  3. SpringBoot coding for saving employees and database shouldn't be called multipl...read more

Tell us how to improve this page.

Travel Corporation India Interview Process

based on 4 interviews

Interview experience

4.8
  
Excellent
View more

Interview Questions from Similar Companies

BCD Travel Interview Questions
4.3
 • 111 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
Pickyourtrail Interview Questions
3.6
 • 20 Interviews
StayVista Interview Questions
2.9
 • 15 Interviews
Headout Interview Questions
4.0
 • 11 Interviews
View all

Travel Corporation India Reviews and Ratings

based on 58 reviews

3.9/5

Rating in categories

3.4

Skill development

3.8

Work-life balance

3.5

Salary

3.8

Job security

3.8

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 58 Reviews and Ratings
Data Entry Operator

Gurgaon / Gurugram

1-4 Yrs

₹ 3-5 LPA

Walkin For Airport Representative

Agra,

Gurgaon / Gurugram

+1

0-1 Yrs

₹ 3.25-4.5 LPA

Hiring Fresh Graduates For Travel & Tourism Industry

Gurgaon / Gurugram,

Jaipur

+1

₹ 3-3.5 LPA

Explore more jobs
Team Consultant
39 salaries
unlock blur

₹3 L/yr - ₹7.1 L/yr

Team Associate
28 salaries
unlock blur

₹2.4 L/yr - ₹4.7 L/yr

Team Lead
20 salaries
unlock blur

₹5 L/yr - ₹8.5 L/yr

Deputy Manager
14 salaries
unlock blur

₹2.6 L/yr - ₹11 L/yr

Customer Service Executive
8 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Explore more salaries
Compare Travel Corporation India with

BCD Travel

4.3
Compare

Yatra

3.4
Compare

FCm Travel Solutions

3.3
Compare

Country Holidays Inn & Suites

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