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

Clear (1)

Amadeus Software Developer Interview Questions, Process, and Tips

Updated 21 Dec 2024

Top Amadeus Software Developer Interview Questions and Answers

  • Q1. Search in a Row-wise and Column-wise Sorted Matrix Problem Statement You are given an N * N matrix of integers where each row and each column is sorted in increasing ord ...read more
  • Q2. Sort Array of Strings Problem Statement Given an array of strings ARRSTR[] of size N , and a character C , your task is to sort the ARRSTR[] array according to a new alp ...read more
  • Q3. Euler’s Totient Function Problem Statement Given an integer N , your task is to determine the count of integers between 1 and N (inclusive) that are coprime to N . Input ...read more
View all 7 questions

Amadeus Software Developer Interview Experiences

15 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

The aptitude test for campus hiring is simple and math based, there is dsa round

Round 2 - Coding Test 

Simple coding problems, the focus is on completing the problems and then general discussion

Round 3 - HR 

(1 Question)

  • Q1. General HR questions from the resume, the HR is patient and listens
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Group Discussion 

Qklwdqdqo oqqed qeo WEFwe WGERG WGER ERG WRG WEG WG WG WG WEG WG WG WEG WRG WEG WE WEG WEG WEG WEG WRG WEG WEG WRG WEGWE WG WRG WRG WEG WEG WEG WEG WEG WEG

Round 2 - Assignment 

AGADFEA AD RG ER G NFNFN N N N N N N N NNNN N N N N N N NN N N N N N NN

Interview Preparation Tips

Interview preparation tips for other job seekers - SKJNASJDFKJR n kj nkj n kj j k kjb kjb kjb kjb kjb kbj kjb kjb b kb kjb kjb kb kb kjb kjb kjb kjb kjb b kjb kjb kjb jb kjb kjb kb kb kb kb

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude along with coding questions

Round 2 - shl test 

(1 Question)

  • Q1. Test on english
Round 3 - One-on-one 

(1 Question)

  • Q1. Combined hr and tehnical interview

Interview Preparation Tips

Topics to prepare for Amadeus Software Developer interview:
  • java
  • general
Interview preparation tips for other job seekers - prepare well with all around basics to advance level of knowledge on languages

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

It was an online technical round. There were around 20 MCQs and two coding questions. The round had an login window of 30 minutes. One coding question was of the level leetcode medium and the other was leetcode hard.

  • Q1. 

    Search in a Row-wise and Column-wise Sorted Matrix Problem Statement

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. Your task is to find the positi...

  • Ans. 

    Given a sorted N * N matrix, find the position of a target integer X.

    • Iterate over each row and column to search for the target integer

    • Utilize the sorted nature of the matrix to optimize the search process

    • Return the position of the target integer if found, else return -1 -1

  • Answered by AI
  • Q2. 

    Euler’s Totient Function Problem Statement

    Given an integer N, your task is to determine the count of integers between 1 and N (inclusive) that are coprime to N.

    Input:

    The first line contains an intege...
  • Ans. 

    Euler's Totient Function calculates count of integers coprime to N between 1 and N.

    • Implement Euler's Totient Function to calculate count of coprime integers to N.

    • Use the formula: phi(N) = N * (1 - 1/p1) * (1 - 1/p2) * ... * (1 - 1/pk) where p1, p2, ..., pk are prime factors of N.

    • Example: For N = 9, phi(9) = 9 * (1 - 1/3) = 6.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was a technical + HR round. The interview panel consisted of two technical guys and one person from HR.

  • Q1. 

    Sort Array of Strings Problem Statement

    Given an array of strings ARRSTR[] of size N, and a character C, your task is to sort the ARRSTR[] array according to a new alphabetical order that starts with the ...

  • Ans. 

    Sort an array of strings based on a new alphabetical order starting with a given character.

    • Iterate through the array of strings and compare each string with the given character to determine the new order.

    • Implement a custom comparator function to sort the strings based on the new alphabetical order.

    • Use built-in sorting functions in programming languages like Python, Java, or C++ to efficiently sort the array.

  • Answered by AI
  • Q2. Can you explain the pillars of Object-Oriented Programming (OOP)?
  • Ans. 

    The pillars of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components of an object, protecting its integrity.

    • Abstraction hides complex implementation details and only shows the necessary features.

    • Polymorphism allows objects to be treated as instances of their parent class, ena

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Amity School Of Engineering And Technology. I applied for the job as SDE - 1 in BengaluruEligibility criteriaAbove 7.5 CGPA, No BacklogsAmadeus interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, Database Manangement Systems, SQL Queries, Greedy and DP Problems, Basics of Computer Networks.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice questions on CP platforms such as codechef and codeforces. It will greatly help you for clearing coding round.
Tip 2 : Make notes of theory Subjects. It will greatly help you in last minute preparation.
Tip 3 : Go through the interview experience of the company before hand.
Tip 4 : Practice questions by narrating the explaination. Else it gets very difficult to both explain and code at the same time of interview.

Application resume tips for other job seekers

Tip 1 : Never lie on the resume. If you are not confident about something dont add it.
Tip 2 : Have atleast 2 projects on resume.
Tip 3 : Dont make it colourful. Follow any formal standard template.
Tip 4 : Add links to the project or your work if possible.
Tip 5 : Have only one Page. Dont write stories.

Final outcome of the interviewSelected

Skills evaluated in this interview

Amadeus interview questions for designations

 Senior Software Developer

 (2)

 Software Developer Intern

 (1)

 Developer

 (1)

 Software Engineer

 (7)

 Software Engineer2

 (2)

 C Developer

 (1)

 Senior Software Engineer

 (14)

 Software Development Engineer

 (1)

I was interviewed in Aug 2016.

Interview Preparation Tips

Round: Test
Experience: The questions were tricky. We were given a paragraph and after reading it, a statement was given to us and we were asked to say if it is true, false or cannot say. The structure of the statement put us into a a tough place. So practice of such kind of questions is necessary.

For data interpretation questions a good hand on basic statistical mathematics is needed. One has to be quick because of the time crunch. The questions were approachable

Round: Technical Interview
Experience: In this round my resume was scanned and I was required to speak about myself, my projects and explain certain areas of my resume. The interviewer picked up one of my basic project, surprisingly, and asked me to elaborate on it. He asked me how I can improve the project. And I had to write a code to make that change. Basically, one should have a good idea about the projects they've done/ mentioned in their resume. And know it in detail.

Few questions on data structures. Prepare well for coding type questions and data structures.

Round: Puzzle Interview
Experience: The interviewer asked me two puzzles. They were moderate level. And also luckily he was helpful whenever I got stuck.

Round: HR Interview
Experience: HR round was good. Basic questions like " tell me more about yourself", brief information about my past history, college life, extra curricular activities. In the end she asked me, "should we hire you?" And I lightly answered " why not!" So it was a good interview overall.

Skills: Coding Skills, Team Working Ability, Project management
College Name: Visvesvaraya National Institute Of Technology

Get interview-ready with Top Amadeus Interview Questions

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

Amadeus Interview FAQs

How many rounds are there in Amadeus Software Developer interview?
Amadeus interview process usually has 2-3 rounds. The most common rounds in the Amadeus interview process are Aptitude Test, Coding Test and Technical.
How to prepare for Amadeus Software Developer 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, HTML, Javascript, Performance Analysis and Product Management.
What are the top questions asked in Amadeus Software Developer interview?

Some of the top questions asked at the Amadeus Software Developer interview -

  1. write code to print fibanocci ser...read more
  2. write code for Anagram prog...read more
  3. What is lazy load...read more

Recently Viewed

INTERVIEWS

Deloitte

No Interviews

INTERVIEWS

Ola Cabs

No Interviews

INTERVIEWS

Tech Mahindra

No Interviews

INTERVIEWS

Amadeus

No Interviews

INTERVIEWS

LTIMindtree

No Interviews

INTERVIEWS

Credera

No Interviews

SALARIES

Data Patterns

INTERVIEWS

CarDekho Group

No Interviews

INTERVIEWS

Capgemini

No Interviews

INTERVIEWS

Cognizant

No Interviews

Tell us how to improve this page.

Amadeus Software Developer Interview Process

based on 14 interviews

2 Interview rounds

  • Coding Test Round
  • Aptitude Test Round
View more
Amadeus Software Developer Salary
based on 180 salaries
₹7.7 L/yr - ₹25 L/yr
98% more than the average Software Developer Salary in India
View more details

Amadeus Software Developer Reviews and Ratings

based on 33 reviews

3.8/5

Rating in categories

3.5

Skill development

4.1

Work-life balance

3.4

Salary

4.3

Job security

3.8

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 33 Reviews and Ratings
Senior Software Engineer
612 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Member Technical Staff
316 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
220 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer II
184 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Business Analyst
182 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Amadeus with

Sabre

4.0
Compare

Travelport

4.5
Compare

Expedia Group

3.8
Compare

Booking Holdings

2.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent