Upload Button Icon Add office photos

Thomas Cook

Compare button icon Compare button icon Compare

Filter interviews by

Thomas Cook Software Developer Interview Questions and Answers

Updated 24 Jun 2024

Thomas Cook Software Developer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Discussion about Hashmaps.
  • Q2. How to make Spring Applications?
  • Ans. 

    Spring applications can be made using Spring Boot, which simplifies the setup and configuration process.

    • Use Spring Initializr to create a new Spring Boot project

    • Add dependencies in the pom.xml file for required Spring modules

    • Create Java classes with annotations like @Controller, @Service, @Repository, etc.

    • Define application properties in application.properties or application.yml file

    • Run the application using the main m

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Discussion about Goals.
  • Q2. Discussed points from Resume

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Merge intervals provided array of start and end Maximum product subaaray

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice top ds algo interview questions

I applied via Campus Placement and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Round 1 was online MCQ test which has question from aptitude and logical reasoning.
  • Q2. Round 2 was technical round in which they have asked 2 question: 1. Triplet sum question. 2. Implement getmin () in stack in O(1) time and space.
  • Q3. Round 3 was also a technical round we have discussed about our projects and then they have asked two puzzle.
  • Q4. Round 4 was HR round and company CTO was taking this round he has asked some usual HR question and then he asked which is your favourite app.
  • Q5. I was not selected. They have not selected anyone from our college. There was three students in last round but no one was selected

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident especially in CTO round.

Interview Questionnaire 

1 Question

  • Q1. Basic Oops , SQL , aap.net

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

It was Conducted on Hacker Earth, There were 2 coding questions and 20 mcq's. Both Coding questions were of medium level and also basic mcq's

Round 2 - One-on-one 

(1 Question)

  • Q1. 2 coding questions of link list were asked and one problem statement was given in which only approach was asked to be given as it was complex to implement during the limited time frame of 1 hour.
Round 3 - Technical 

(1 Question)

  • Q1. DBMS, OS in depth was asked and Some questions of Networking were also asked. For DBMS questions on Indexing, B ,B+ Trees, Normalization based on real life scenario's were asked and from OS all types of CP...

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your Data Structure and Algorithm Regularly and also focus on Technical Skills
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Delhi College of Engineering (DCE), Delhi and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Smallest window in a string containing all the characters of another string.(GFG)
  • Ans. 

    Find the smallest window in a string containing all characters of another string.

    • Use a sliding window approach to find the smallest window

    • Create a frequency map of characters in the second string

    • Slide the window and update the frequency map until all characters are found

    • Track the minimum window size and indices

  • Answered by AI
  • Q2. Check whether linked list is Pallindrome or not
  • Ans. 

    To check if a linked list is a palindrome, compare the first half of the list with the reversed second half.

    • Traverse the linked list to find the middle element using slow and fast pointers.

    • Reverse the second half of the linked list.

    • Compare the first half with the reversed second half to check for palindrome.

  • Answered by AI
  • Q3. Deadlocks,4 conditions of Deadlocks and ways of preventing Deadlock
  • Ans. 

    Deadlocks occur when two or more processes are waiting for each other to release resources, leading to a standstill.

    • 4 conditions of Deadlocks: mutual exclusion, hold and wait, no preemption, circular wait

    • Preventing Deadlocks: using a proper resource allocation strategy, implementing timeouts, avoiding circular wait, using deadlock detection and recovery algorithms

    • Example: Two processes each holding a resource and waiti...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Algorithm to find if any 5 numbers add up to the value of the Sum
  • Ans. 

    Use a hash set to store seen numbers and check if the complement of current number is in the set.

    • Iterate through the array and for each number, check if the complement of the current number is in the hash set.

    • If the complement is found, return true. Otherwise, add the current number to the hash set.

    • Repeat this process for all numbers in the array.

    • Example: Array [1, 2, 3, 4, 5] and Sum 9 should return true as 4 + 5 = 9.

  • Answered by AI
  • Q2. What is DNS(Domain Name System)
  • Ans. 

    DNS is a system that translates domain names to IP addresses, allowing users to access websites using human-readable names.

    • DNS is like a phone book for the internet, translating domain names (e.g. google.com) to IP addresses (e.g. 172.217.3.206).

    • DNS servers store records that map domain names to IP addresses, helping users navigate the internet.

    • DNS also helps with email delivery by translating domain names in email add

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your Data Structures well,get a in depth understanding of your projects,go through your core subjects specially OOPs,OS and DBMS.

Skills evaluated in this interview

I applied via Referral and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Questions on Java 00P
  • Q2. Quetion on Spring Framework

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well Java, Spring and Spring Boot

Interview Questionnaire 

2 Questions

  • Q1. Basic on on SQL,
  • Q2. Unix server Comands

Interview Questionnaire 

8 Questions

  • Q1. Find out the subset of an array of continuous positive numbers from a larger array whose sum of of the elements is larger in comparision to other subset. eg: {1,2 5 -7, 2 5} .The two subarrays are {1,2,5} ...
  • Ans. 

    Find the subset of an array with the largest sum of continuous positive numbers.

    • Iterate through the array and keep track of the current sum and the maximum sum seen so far.

    • If the current element is positive, add it to the current sum. If it is negative, reset the current sum to 0.

    • Also keep track of the start and end indices of the maximum sum subset.

    • Return the subset using the start and end indices.

  • Answered by AI
  • Q2. Given two classes C1 and C2 which are almost same.(remember not exactly same). You want to choose best among these classes so that it can be use as key in hashmap. What question will you ask regarding two ...
  • Q3. You are given two strings s1 and s2.Now, find the smallest substring in s1 containing all characters of s2
  • Ans. 

    Find smallest substring in s1 containing all characters of s2.

    • Create a hash table of characters in s2

    • Use sliding window technique to find smallest substring in s1

    • Check if all characters in s2 are present in the substring

    • Update the smallest substring if a smaller one is found

  • Answered by AI
  • Q4. Questions on OOPS (almost all the concepts were covered like polymorphism, overriding, overloading, inheritance, concept of virtual fxns etc.)
  • Q5. Write algo for reversing a linked list
  • Ans. 

    Algorithm to reverse a linked list

    • Create a new empty linked list

    • Traverse the original linked list and insert each node at the beginning of the new list

    • Return the new list

  • Answered by AI
  • Q6. What is lazy loading? Advantages and disadvantages of the same?
  • Ans. 

    Lazy loading is a technique used to defer the loading of non-critical resources until they are needed.

    • Advantages: faster initial page load, reduced bandwidth usage, improved user experience

    • Disadvantages: increased complexity, potential for slower subsequent page loads, difficulty with SEO

    • Examples: images, videos, and other media files can be loaded only when they are visible on the screen

  • Answered by AI
  • Q7. How ajax works? Difference between angular js and jquery?
  • Ans. 

    Ajax is a technique for creating fast and dynamic web pages. AngularJS is a framework for building dynamic web applications, while jQuery is a library for simplifying HTML DOM traversal and manipulation.

    • Ajax stands for Asynchronous JavaScript and XML

    • It allows web pages to be updated asynchronously by exchanging data with a web server behind the scenes

    • AngularJS is a JavaScript framework that extends HTML with new attrib...

  • Answered by AI
  • Q8. Design a traffic light system?
  • Ans. 

    A traffic light system controls the flow of traffic at intersections.

    • The system consists of three lights: red, yellow, and green.

    • Each light has a specific duration for which it stays on.

    • The system also includes sensors to detect the presence of vehicles and pedestrians.

    • The duration of each light can be adjusted based on traffic patterns.

    • The system can be connected to a central control system for remote monitoring and m

  • Answered by AI

Interview Preparation Tips

Skills: Javascript, Ajax, Angular JS, Jquery
College Name: na

Skills evaluated in this interview

I was interviewed before Feb 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with 3 problems based on DSA and Algorithms.

  • Q1. 

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

  • Q2. 

    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...
  • Q3. 

    Smallest Window Problem Statement

    Given two strings S and X containing random characters, the task is to find the smallest substring in S which contains all the characters present in X.

    Input:

    The first...
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions based on OOPS and Angular.

  • Q1. What are the different OOP concepts?
Round 3 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Questions based on System Design, ajax, jquery were asked.

  • Q1. How would you design a traffic light system?
  • Q2. How does AJAX work?
  • Q3. What is the difference between AngularJS and jQuery?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMakeMyTrip interview preparation:Topics to prepare for the interview - Javascript, Ajax, Angular JS, Jquery, Data Structures, Algorithms, System Design, OOPSTime required to prepare for the interview - 6 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 interviewRejected

Skills evaluated in this interview

Thomas Cook Interview FAQs

How many rounds are there in Thomas Cook Software Developer interview?
Thomas Cook interview process usually has 2 rounds. The most common rounds in the Thomas Cook interview process are Technical and HR.
What are the top questions asked in Thomas Cook Software Developer interview?

Some of the top questions asked at the Thomas Cook Software Developer interview -

  1. How to make Spring Applicatio...read more
  2. Discussion about Hashma...read more
  3. Discussion about Goa...read more

Tell us how to improve this page.

Thomas Cook Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Thomas Cook Software Developer Salary
based on 9 salaries
₹5 L/yr - ₹7.8 L/yr
22% less than the average Software Developer Salary in India
View more details

Thomas Cook Software Developer Reviews and Ratings

based on 4 reviews

3.0/5

Rating in categories

1.0

Skill development

3.0

Work-life balance

1.0

Salary

1.1

Job security

3.1

Company culture

1.0

Promotions

1.2

Work satisfaction

Explore 4 Reviews and Ratings
Assistant Manager
690 salaries
unlock blur

₹2.2 L/yr - ₹8 L/yr

Manager
212 salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Executive
189 salaries
unlock blur

₹1 L/yr - ₹4.8 L/yr

Customer Relation Executive
142 salaries
unlock blur

₹1.6 L/yr - ₹3.8 L/yr

Senior Manager
138 salaries
unlock blur

₹5 L/yr - ₹18 L/yr

Explore more salaries
Compare Thomas Cook with

MakeMyTrip

3.7
Compare

Yatra

3.4
Compare

Cox & Kings

3.7
Compare

SOTC Travel Limited

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