Upload Button Icon Add office photos
Engaged Employer

i

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

Amadeus Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Amadeus Senior Software Engineer Interview Questions and Answers

Updated 23 Feb 2025

8 Interview questions

A Senior Software Engineer was asked 12mo ago
Q. Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
Ans. 

Check if a string is a palindrome

  • Iterate through each string in the array

  • For each string, compare characters from start and end to check if it's a palindrome

  • Return true if all strings are palindromes, false otherwise

A Senior Software Engineer was asked
Q. What is the 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 ...

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more
A Senior Software Engineer was asked
Q. How do map and unordered_map work?
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...

A Senior Software Engineer was asked
Q. Given an array of integers, find the frequency of each digit and store the elements in a new array sorted by frequency, with the most frequent elements appearing first and the least frequent elements appear...
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.

A Senior Software Engineer was asked
Q. 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.

  • Auth...

A Senior Software Engineer was asked
Q. 1. Internal Implementation of HashMap 2.Pusblisher and Suscriber concept Most of them were from core java concepts like polymorphism and abstraction
Ans. 

Internal implementation of HashMap and Publisher-Subscriber concept in core Java.

  • HashMap in Java is implemented using an array of linked lists and hash codes to store key-value pairs.

  • Publisher-Subscriber pattern in Java involves one object (the publisher) sending updates to multiple other objects (subscribers).

  • Polymorphism in Java allows objects of different classes to be treated as objects of a common superclass.

  • ...

A Senior Software Engineer was asked 12mo ago
Q. Different types of automation frameworks used
Ans. 

Various automation frameworks like keyword-driven, data-driven, hybrid, and behavior-driven are commonly used in software testing.

  • Keyword-driven framework: Tests are written using keywords and actions.

  • Data-driven framework: Tests are driven by data sets.

  • Hybrid framework: Combination of multiple frameworks.

  • Behavior-driven framework: Focuses on behavior of the system.

  • Page Object Model (POM): Organizes code by separa...

Are these interview questions helpful?
A Senior Software Engineer was asked
Q. Backend architecture design for online ecom platform
Ans. 

Backend architecture design for an online e-commerce platform involves designing a scalable, secure, and reliable system.

  • Choose a suitable database management system (DBMS) based on the requirements

  • Use a microservices architecture to break down the system into smaller, independent services

  • Implement caching mechanisms to improve performance

  • Ensure data security by implementing encryption, access control, and regular...

Amadeus Senior Software Engineer Interview Experiences

15 interviews found

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

(2 Questions)

  • Q1. Palindrome check for strings
  • Ans. 

    Check if a string is a palindrome

    • Iterate through each string in the array

    • For each string, compare characters from start and end to check if it's a palindrome

    • Return true if all strings are palindromes, false otherwise

  • Answered by AI
  • Q2. Basic java programming questions
Round 2 - Technical 

(2 Questions)

  • Q1. Selenium test automation frameworks
  • Q2. Different types of automation frameworks used
  • Ans. 

    Various automation frameworks like keyword-driven, data-driven, hybrid, and behavior-driven are commonly used in software testing.

    • Keyword-driven framework: Tests are written using keywords and actions.

    • Data-driven framework: Tests are driven by data sets.

    • Hybrid framework: Combination of multiple frameworks.

    • Behavior-driven framework: Focuses on behavior of the system.

    • Page Object Model (POM): Organizes code by separating ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Sum of 3 numbers in an array equal to x

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected
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 - Technical 

(1 Question)

  • Q1. Complete java questions followed by hibernate and spring boot
Round 3 - Technical 

(1 Question)

  • Q1. Questions on multithreading, hibernate, spring boot, rest api and roles and responsibility in current company.
Round 4 - Group Discussion 

Current company roles and responsibilities.
Ability to learn new technologies.
How to build and deploy software.
What they offer in Amadeus.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cleared 4 rounds of interview.
Screening, 2 technical rounds, last managerial+V.P round.
Last HR sent mail saying my profile doesn't match with theirs. I guess screening process is enough to check requirements match. Atleast 2 technical rounds are enough to check requirements match.

Felt unprofessional response after 4 rounds.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. 1. Internal Implementation of HashMap 2.Pusblisher and Suscriber concept Most of them were from core java concepts like polymorphism and abstraction
  • Ans. 

    Internal implementation of HashMap and Publisher-Subscriber concept in core Java.

    • HashMap in Java is implemented using an array of linked lists and hash codes to store key-value pairs.

    • Publisher-Subscriber pattern in Java involves one object (the publisher) sending updates to multiple other objects (subscribers).

    • Polymorphism in Java allows objects of different classes to be treated as objects of a common superclass.

    • Abstr...

  • Answered by AI
Round 3 - Case Study 

Design publisher and subscriber system

Round 4 - HR 

(1 Question)

  • Q1. Why do you want to join the company

Skills evaluated in this interview

Senior Software Engineer Interview Questions & Answers

user image Sivaprasad Neelur

posted on 16 Oct 2023

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

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

I appeared for an interview before Feb 2023.

Round 1 - Technical 

(1 Question)

  • Q1. JavaScript basics
Round 2 - Technical 

(1 Question)

  • Q1. Angular questions, some behavioral questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Management round
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

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 Approached by Company and was interviewed before Sep 2021. 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 tips
Round 2 - Coding Test 

I was given 2 coding question to solve.
Asked to explain time complexity and space complexity of code I written
Few question on database sql and no-sql

Round 3 - Technical 

(3 Questions)

  • Q1. Mostly about system design
  • Q2. Backend architecture design for online ecom platform
  • Ans. 

    Backend architecture design for an online e-commerce platform involves designing a scalable, secure, and reliable system.

    • Choose a suitable database management system (DBMS) based on the requirements

    • Use a microservices architecture to break down the system into smaller, independent services

    • Implement caching mechanisms to improve performance

    • Ensure data security by implementing encryption, access control, and regular back...

  • Answered by AI
  • Q3. REST API related question and API designing
Round 4 - Behavioral 

(2 Questions)

  • Q1. This was 3 rd round mostly Behavioural question
  • Q2. What was your current roles and responsibilities
Round 5 - HR 

(3 Questions)

  • Q1. Why you want to join our company
  • Ans. 

    I admire your company's innovative approach and commitment to excellence, which aligns with my career goals and values.

    • Your company's focus on cutting-edge technology, like AI and machine learning, excites me as I have experience in these areas.

    • I appreciate your commitment to professional development; I am eager to grow my skills through your mentorship programs.

    • The collaborative culture at your company is appealing; I...

  • Answered by AI
  • Q2. What is you salary expectation
  • Ans. 

    Salary expectations should reflect market rates, personal experience, and the value you bring to the role.

    • Market Research: It's essential to research industry standards for similar roles in your location. For example, a Senior Software Engineer in San Francisco may expect a higher salary than in a smaller city.

    • Experience Level: Consider your years of experience and expertise in relevant technologies. For instance, if y...

  • Answered by AI
  • Q3. Reason for leaving you previous company

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding data structure fundamentals
Knowledge of SQL and No-Sql database
Good hands on experience on any one of programming language

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I appeared for an interview before Apr 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Questions related to arrays

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

Interview Questionnaire 

1 Question

  • Q1. This interview was for cpp development Role. Questions on Topics of Pointers, References, Casting in Cpp, Design Patterns, Some standard puzzles from Geeksforgeeks, Constructor, Destructor, virtual ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is mid complex Level. Refer Geeksforgeeks.org for complete preparation. Cover all topics under cpp domain. Prepare basic data structures, stack, queue, linked list and standard problems on it. Like implement stack with queue, Find loop in linked list. Given a single pointer, delete the node in single linked list.

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Amadeus?
Ask anonymously on communities.

Amadeus Interview FAQs

How many rounds are there in Amadeus Senior Software Engineer interview?
Amadeus interview process usually has 2-3 rounds. The most common rounds in the Amadeus interview process are Technical, Resume Shortlist and HR.
How to prepare for Amadeus 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 Amadeus. The most common topics and skills that interviewers at Amadeus expect are Debugging, Python, Agile, HTML and Javascript.
What are the top questions asked in Amadeus Senior Software Engineer interview?

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

  1. What are distributed systems? How does the security can be maintain...read more
  2. Frequency of digits in an array and store elements in new array in a sorted ord...read more
  3. Importance of container orchestration tools in large complex syste...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 8 interview experiences

Difficulty level

Moderate 75%
Hard 25%

Duration

Less than 2 weeks 33%
2-4 weeks 67%
View more
Amadeus Senior Software Engineer Salary
based on 686 salaries
₹17.5 L/yr - ₹37.7 L/yr
64% more than the average Senior Software Engineer Salary in India
View more details

Amadeus Senior Software Engineer Reviews and Ratings

based on 64 reviews

3.7/5

Rating in categories

3.2

Skill development

4.1

Work-life balance

3.3

Salary

4.0

Job security

3.7

Company culture

3.3

Promotions

3.4

Work satisfaction

Explore 64 Reviews and Ratings
Senior Software Engineer
686 salaries
unlock blur

₹17.5 L/yr - ₹37.7 L/yr

Member Technical Staff
324 salaries
unlock blur

₹20.5 L/yr - ₹34 L/yr

Software Development Engineer II
230 salaries
unlock blur

₹15.2 L/yr - ₹26 L/yr

Senior Business Analyst
183 salaries
unlock blur

₹16 L/yr - ₹27.4 L/yr

Software Developer
181 salaries
unlock blur

₹12.4 L/yr - ₹36 L/yr

Explore more salaries
Compare Amadeus with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

3.5
Compare
write
Share an Interview