Upload Button Icon Add office photos

Sabre

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Sabre Configuration Management Engineer Interview Questions and Answers

Updated 28 Jul 2024

Sabre Configuration Management Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Details of day to day task
  • Ans. 

    Day to day tasks involve managing configuration items, version control, release management, and ensuring consistency across systems.

    • Managing configuration items such as software, hardware, and documentation

    • Implementing version control for code and documentation changes

    • Coordinating release management processes

    • Ensuring consistency and accuracy of configurations across systems

  • Answered by AI
  • Q2. SQL port number

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

This was a round with a 3rd party. They had asked dynamic programming question.

Round 2 - Technical 

(1 Question)

  • Q1. They had asked to code in this. It was a question related to their own booking system. Not very difficult. They will see your problem solving skills, and your thinking process.
Round 3 - Behavioral Round 

(1 Question)

  • Q1. This was related to situational questions like how would you deal with situations. They would basically check if you are fit for a team.

Interview Preparation Tips

Topics to prepare for Booking Holdings Software Engineer interview:
  • Java coding

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Ans. 

    Find 5 missing numbers in an array of size 95 containing numbers in range 1 to 100.

    • Create a boolean array of size 100 and mark the present numbers

    • Iterate through the boolean array and find the missing numbers

    • Alternatively, use a HashSet to store the present numbers and find the missing ones

  • Answered by AI
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

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

Software Engineer Interview Questions & Answers

Amadeus user image Varun Thopucherla

posted on 11 Mar 2015

Interview Questionnaire 

10 Questions

  • Q1. Tell about yourself?
  • Ans. 

    I am a software engineer with experience in developing web applications and mobile apps.

    • Proficient in programming languages such as Java, Python, and JavaScript

    • Experience in developing RESTful APIs and integrating third-party APIs

    • Familiarity with front-end frameworks such as React and Angular

    • Strong understanding of database management systems such as MySQL and MongoDB

    • Passionate about learning new technologies and keepi

  • Answered by AI
  • Q2. Why Software industry? why not core?
  • Ans. 

    Software industry offers endless opportunities for innovation and growth.

    • Software industry is constantly evolving and offers opportunities to work on cutting-edge technologies.

    • It provides a platform to solve complex problems and create innovative solutions.

    • The demand for software engineers is high and the industry offers competitive salaries.

    • Core industries may have limited scope for growth and innovation compared to s...

  • Answered by AI
  • Q3. Write a program to print the given string in reverse
  • Ans. 

    Program to print a given string in reverse

    • Create a character array of the given string

    • Loop through the array from end to start and print each character

  • Answered by AI
  • Q4. Some questions about computer networks and Digital electronics
  • Q5. What is Mux? what are its real life applications?
  • Ans. 

    Mux is a device that selects one of several input signals and forwards the selected input into a single output line.

    • Mux stands for Multiplexer.

    • It is used in digital circuits to select one of several input signals and forward the selected input into a single output line.

    • It is used in communication systems to combine multiple signals into a single channel for transmission.

    • It is used in video and audio systems to switch b...

  • Answered by AI
  • Q6. What is DeMux? what are its real life applications?
  • Ans. 

    DeMux is short for Demultiplexer. It is a digital circuit that takes one input and directs it to multiple outputs.

    • DeMux is used in digital communication systems to separate signals that have been combined for transmission.

    • It is also used in computer memory systems to select a specific memory location.

    • DeMux is used in video and audio systems to separate different channels of information.

    • It is used in automation systems ...

  • Answered by AI
  • Q7. Difference between decoder and Demux
  • Ans. 

    Decoder converts encoded data into a readable format while Demux separates a single input into multiple outputs.

    • Decoder is used to decode encoded data such as binary data into a readable format.

    • Demux is used to separate a single input into multiple outputs based on the control signals.

    • Decoder is a combinational circuit while Demux is a sequential circuit.

    • Decoder is used in applications such as remote controls, computer...

  • Answered by AI
  • Q8. Why amadeus labs?
  • Ans. 

    Amadeus Labs is a leading technology company in the travel industry.

    • Amadeus Labs provides opportunities to work on cutting-edge technologies.

    • The company has a strong focus on innovation and research.

    • Amadeus Labs has a global presence and offers a diverse and inclusive work environment.

    • Working at Amadeus Labs provides the opportunity to make a real impact on the travel industry.

    • The company values work-life balance and o

  • Answered by AI
  • Q9. Are you comfortable in working for Testing?
  • Ans. 

    Yes, I am comfortable working for Testing.

    • I have experience in testing and understand its importance in software development.

    • I am willing to learn new testing techniques and tools.

    • I am comfortable working with testing teams and collaborating with them to ensure quality software.

    • I understand the importance of testing in ensuring customer satisfaction and reducing costs.

    • Examples: I have experience in manual and automated...

  • Answered by AI
  • Q10. Why do you consider yourself suitable for developer role?
  • Ans. 

    I have the necessary skills and experience to excel in the developer role.

    • I have a degree in computer science and have completed multiple coding projects.

    • I am proficient in programming languages such as Java, Python, and C++.

    • I have experience working with databases and web development frameworks.

    • I am a quick learner and enjoy solving complex problems.

    • I am a team player and have collaborated with other developers on var

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The test was conducted online. All the questions were of medium standard and easy to crack if we have patience for thinking.

English comprehension level is slightly below the standard of CAT. Those who have the habit of reading English news paper can easily crack the test.

Data analysis questions were also of medium standard. Those who have knowledge about graphs, bar & pie charts can easily crack the exam.
Tips: Practice Aptitude questions from R S Agarwaal book and CAT material.

Round: Technical Interview
Experience: Over all interview experience is cool. Interviewers never grilled on anything. In many cases they have helped me to arrive at answers.
Tips: Read C++ and Oops concepts from E Balaguruswamy text book.
For Data structures and algorithms read 'Data structures' by Yeshwant kanethkar.
Minimum knowledge about all the courses of your department will be an added advantage. This will help you to depict you are sincere in your studies and don't have any personal constraints in learning a new thing.

General Tips: Just be confident and believe in yourself. You will get through.
Skills: Programming skill in C++
College Name: NIT Warangal
Motivation: No special motivation. It is a rapidly growing company offering good package.

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Aug 2023. 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 Resume tips
Round 2 - Aptitude Test 

General reasoning and Mathmatics Aptitude

Round 3 - Technical 

(1 Question)

  • Q1. Core Java and Coding questions

Interview Preparation Tips

Topics to prepare for Yatra Software Engineer interview:
  • Core Java
  • Advanced Java
  • SQL
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

I applied via Recruitment Consulltant and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. What are the types of data.
  • Ans. 

    Types of data include numerical, categorical, ordinal, and binary.

    • Numerical data includes continuous and discrete values, such as height and age.

    • Categorical data includes non-numeric values, such as colors and types of fruit.

    • Ordinal data includes values with a specific order, such as rankings and ratings.

    • Binary data includes only two possible values, such as true/false and yes/no.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn the basic concepts of data structures. Data structures are must. And be true to your resume, don't mention the things you have no idea about.

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Mar 2022. There were 3 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 - One-on-one 

(1 Question)

  • Q1. Core : DBMS , oops in depth coding: basic DSA questions based on Arrays, String.
Round 3 - One-on-one 

(1 Question)

  • Q1. He asked me graph questions ( medium level ) based on a node to root, and min cost to target. note: if you really want to crack the yata.com interview practice graph question and they ask a leetcode questi...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. focus on dsa (graph) for the yatra.com
2. clear your oops concept.
3. clear your DBMS concept.
Contribute & help others!
anonymous
You can choose to be anonymous

Sabre Interview FAQs

How many rounds are there in Sabre Configuration Management Engineer interview?
Sabre interview process usually has 1 rounds. The most common rounds in the Sabre interview process are Technical.

Recently Viewed

INTERVIEWS

Biocon Limited

No Interviews

INTERVIEWS

Fujitsu

5.6k top interview questions

INTERVIEWS

Fujitsu

No Interviews

INTERVIEWS

ASC Infratech

No Interviews

INTERVIEWS

Fujitsu

No Interviews

INTERVIEWS

Biocon Limited

5.6k top interview questions

INTERVIEWS

Fujitsu

No Interviews

INTERVIEWS

ASC Infratech

No Interviews

INTERVIEWS

Fujitsu

No Interviews

INTERVIEWS

Biocon Limited

No Interviews

Tell us how to improve this page.

Sabre Configuration Management Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Adobe Interview Questions
3.9
 • 252 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 173 Interviews
Dassault Systemes Interview Questions
4.0
 • 160 Interviews
VMware Software Interview Questions
4.4
 • 158 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
NCR Voyix Interview Questions
3.9
 • 124 Interviews
MakeMyTrip Interview Questions
3.7
 • 122 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
Thomson Reuters Interview Questions
4.1
 • 112 Interviews
View all
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