Upload Button Icon Add office photos

Sabre

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Sabre Senior Software Engineer Interview Questions and Answers

Updated 25 Nov 2023

Sabre Senior Software Engineer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 5 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 Resume tips
Round 2 - Coding Test 

Hashing questions like find the most frequency number in hiven array

Round 3 - One-on-one 

(1 Question)

  • Q1. Linked list reverse
Round 4 - One-on-one 

(1 Question)

  • Q1. Finding the loop in ll
  • Ans. 

    Finding the loop in a linked list

    • Use two pointers, one slow and one fast, to detect a loop

    • If the fast pointer catches up with the slow pointer, there is a loop

    • Once a loop is detected, use another pointer to find the start of the loop

  • Answered by AI
Round 5 - Behavioral 

(1 Question)

  • Q1. Project architecture and behaviour

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Sep 2021. There were 6 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 Resume tips
Round 2 - Coding Test 

Basic Java programming test which will test you on problem solving skills and assess the knowledge on java

Round 3 - Technical 

(1 Question)

  • Q1. Fundamentals of Java and related frameworks based on their project
Round 4 - Assignment 

High Level overview of product development

Round 5 - One-on-one 

(1 Question)

  • Q1. Interview with Manger
Round 6 - HR 

(1 Question)

  • Q1. Package. Related Questions and Somme behavioural questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good work life balance and good compensation . Good place to work

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more

Interview questions from similar companies

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 was interviewed in Aug 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Timing was fine - It was in the afternoon
Interviewer was friendly and helpful

  • Q1. 

    Find Duplicates in an Array

    Given an array ARR of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.

    Return the duplicate elements in any orde...

  • Ans. 

    Find duplicates in an array of integers within a specified range.

    • Iterate through the array and keep track of the count of each element using a hashmap.

    • Return elements with count greater than 1 as duplicates.

    • Handle edge cases like empty array or no duplicates found.

    • Example: For input [0, 3, 1, 2, 3], output should be [3].

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

- Timing was fine - Afternoon
- Interviewer was friendly

  • Q1. How would you design a caching library?
  • Ans. 

    Designing a caching library involves considering data storage, retrieval, expiration policies, and cache invalidation strategies.

    • Define the caching requirements such as data size, access patterns, and expiration policies.

    • Choose a suitable data structure for caching like LRU, LFU, or a simple key-value store.

    • Implement cache eviction policies to handle memory constraints and optimize performance.

    • Consider thread safety an...

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

- Timing was fine - Afternoon
- Interviewer was friendly

  • Q1. What is the number of edges in a 10x10 cube?
  • Ans. 

    A 10x10 cube has 600 edges.

    • A cube has 12 edges, so a 10x10 cube would have 12 edges on each of its 6 faces.

    • 12 edges x 6 faces = 72 edges for the entire cube.

    • However, each edge is shared by two faces, so we need to divide by 2 to get the total number of unique edges.

    • 72 edges / 2 = 36 unique edges on the outer surface of the cube.

    • Since the cube has 10x10x10 = 1000 unit cubes, each with 12 edges, we need to subtract the e...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Senior Software Engineer in GurgaonEligibility criteriaGood professional experienceixigo interview preparation:Topics to prepare for the interview - iOS Development, Software Architecture, Protocol Oriented programming, System Design, Data StructuresTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Be confident
Tip 2 : Be always ready for white board coding
Tip 3 : Brush up your basics

Application resume tips for other job seekers

Tip 1 : Resume should not be more than 1 page long
Tip 2 : Write down your technical skills, Frameworks

Final outcome of the interviewSelected

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Basics of android and java
Round 2 - Coding Test 

Ds related questions

Round 3 - Technical 

(1 Question)

  • Q1. All Android (Java and kotlin)
Round 4 - Behavioral 

(1 Question)

  • Q1. Past projects,android,kotlin
Round 5 - HR 

(1 Question)

  • Q1. About Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared if you want to join in yatra
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. What are distributed systems? How does the security can be maintained?
  • Ans. 

    Distributed systems are a network of independent computers that work together to achieve a common goal. Security can be maintained through encryption, authentication, access control, and monitoring.

    • Distributed systems consist of multiple computers that communicate and coordinate actions to achieve a common goal.

    • Security in distributed systems can be maintained through encryption of data in transit and at rest.

    • Authentic...

  • Answered by AI
  • Q2. Importance of container orchestration tools in large complex systems?
  • Ans. 

    Container orchestration tools are crucial for managing the deployment, scaling, and monitoring of large complex systems.

    • Container orchestration tools help automate the deployment and scaling of containerized applications, making it easier to manage large complex systems.

    • They provide features like service discovery, load balancing, health checks, and auto-scaling, which are essential for ensuring high availability and p...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Amadeus Senior Software Engineer interview:
  • Advanced Java
  • Kafka
  • Docker
  • Angular
Interview preparation tips for other job seekers - Very Good Company.. Employee well being focus.

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basic oops consept questions?
  • Q2. How map and un_ordered map works?
  • Ans. 

    Map and unordered_map are associative containers that store elements in key-value pairs.

    • Map is implemented as a balanced binary tree while unordered_map is implemented as a hash table.

    • Map stores elements in sorted order based on the key while unordered_map does not guarantee any specific order.

    • Map has a slower insertion and deletion time complexity than unordered_map.

    • Map is useful when we need to maintain elements in a...

  • Answered by AI
  • Q3. Frequency of digits in an array and store elements in new array in a sorted order such a way that more frequent one comes first and least frequent one at the end.
  • Ans. 

    Sort array of strings based on frequency of digits in each element.

    • Create a dictionary to store frequency of digits in each element.

    • Sort the array based on the frequency of digits using the dictionary.

    • Handle ties by sorting based on the original order of elements.

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Typical manager question

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of opps and data structures, should be very cautious whatever you speak in manager round, it will back fire you

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of JavaScript to the core!

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in basics... You can crack it easily!
Round 1 - One-on-one 

(2 Questions)

  • Q1. Internal Working Of Hashmap, Java 8 features and two DSA questions one was based on the array and the second one was based on LinkedList. The first interview round was very excellent that's why they conduc...
  • Q2. Detect loop in a LinkedList,
  • Ans. 

    Detect loop in a LinkedList

    • Use two pointers, one moving at twice the speed of the other

    • If there is a loop, the faster pointer will eventually catch up to the slower one

    • If there is no loop, the faster pointer will reach the end of the list

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

(2 Questions)

  • Q1. System Design HLD and LLD round which was the final round.
  • Q2. HLD and LLD Designing round: Desing Architecture for ChatBot and Company Employee Data Management System.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have Good Practice in DSA and System Desing, Basic and OOPS concept of any One Programming Language should be very clear

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic js question closure, async defer and all
  • Q2. Create autosuggest debounce, pollyfill
  • Ans. 

    Autosuggest debounce is a feature that delays the search suggestions until the user stops typing, and a polyfill is a piece of code that provides functionality that is not natively supported by the browser.

    • Implement a debounce function to delay the autosuggest feature until the user stops typing.

    • Use a polyfill to provide support for the autosuggest feature in browsers that do not natively support it.

    • Example: Implement ...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. A programming question
  • Q2. React-native architecture and flatlist
  • Q3. Kadanes algorithm
  • Ans. 

    Kadane's algorithm is used to find the maximum subarray sum in an array of integers.

    • Iterate through the array and keep track of the maximum sum ending at each index.

    • At each index, choose between extending the previous subarray or starting a new subarray.

    • Example: For array [-2, 1, -3, 4, -1, 2, 1, -5, 4], the maximum subarray sum is 6 (from index 3 to 6).

  • Answered by AI
  • Q4. Scalablity, performance

Interview Preparation Tips

Interview preparation tips for other job seekers - Advance js topics and programming questions, scalablity and performance optimization

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Sabre Interview FAQs

How many rounds are there in Sabre Senior Software Engineer interview?
Sabre interview process usually has 5-6 rounds. The most common rounds in the Sabre interview process are One-on-one Round, Resume Shortlist and Coding Test.
How to prepare for Sabre Senior Software Engineer 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 Sabre. The most common topics and skills that interviewers at Sabre expect are Hibernate, Information Technology, Javascript, Software Engineering and Core Java.
What are the top questions asked in Sabre Senior Software Engineer interview?

Some of the top questions asked at the Sabre Senior Software Engineer interview -

  1. Finding the loop in...read more
  2. Fundamentals of Java and related frameworks based on their proj...read more
  3. Package. Related Questions and Somme behavioural questi...read more

Recently Viewed

INTERVIEWS

Fujitsu

No Interviews

SALARIES

Fujitsu

INTERVIEWS

ASC Infratech

5.6k top interview questions

DESIGNATION

SALARIES

Fujitsu

INTERVIEWS

Fujitsu

No Interviews

INTERVIEWS

Fujitsu

No Interviews

SALARIES

ASC Infratech

DESIGNATION

INTERVIEWS

Biocon Limited

No Interviews

Tell us how to improve this page.

Sabre Senior Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Sabre Senior Software Engineer Salary
based on 141 salaries
₹13 L/yr - ₹36 L/yr
72% more than the average Senior Software Engineer Salary in India
View more details

Sabre Senior Software Engineer Reviews and Ratings

based on 19 reviews

3.5/5

Rating in categories

3.1

Skill development

3.7

Work-life balance

3.4

Salary

2.6

Job security

3.5

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 19 Reviews and Ratings
Senior Software Engineer
141 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
44 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
42 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Developer
42 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Sabre with

Amadeus

3.9
Compare

Expedia Group

3.8
Compare

Booking Holdings

2.6
Compare

CWT

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