i
Amadeus
Filter interviews by
I applied via Recruitment Consultant and was interviewed in Sep 2021. There were 4 interview rounds.
I applied via Recruitment Consulltant and was interviewed before Sep 2021. There were 3 interview rounds.
Basic coding.. prime number.. palindrome
I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.
A webservice is a software system designed to support interoperable machine-to-machine interaction over a network.
Webservices use standardized protocols such as HTTP, XML, SOAP, and REST.
They allow different applications to communicate with each other regardless of the programming language or platform used.
Webservices can be used for a variety of purposes such as data exchange, business process integration, and applica...
API is a set of protocols for building software while Webservice is a type of API that uses HTTP for communication.
API is a set of protocols for building software applications
Webservice is a type of API that uses HTTP for communication
API can be used for both internal and external communication
Webservice is typically used for external communication over the internet
API can be in any form like REST, SOAP, etc.
Webservice
Pesticide paradox refers to the phenomenon where pests develop resistance to pesticides over time.
Pesticides are used to kill pests, but over time pests develop resistance to them
This happens because the pests that are resistant to the pesticide survive and reproduce, passing on their resistance to their offspring
This can lead to the need for stronger and more toxic pesticides, which can have negative environmental and...
I applied via Naukri.com and was interviewed in Jun 2021. There were 5 interview rounds.
Amadeus interview questions for popular designations
I applied via Recruitment Consultant and was interviewed in Aug 2021. There were 3 interview rounds.
Get interview-ready with Top Amadeus Interview Questions
I applied via Campus Placement and was interviewed before Mar 2021. There were 4 interview rounds.
Test was on HackerRank with a duration of 90 minutes. It contained around 25 aptitude and 2 coding questions.
Aptitude on SHL platform. Each question had a time constraint and you cannot navigate back to the previous question. Would recommend to give a demo SHL test before taking the actual test.
I was interviewed in Sep 2020.
Round duration - 120 minutes
Round difficulty - Medium
It was a mix of mathematical aptitude, logical ability, and puzzles along with 2 programming questions of easy and medium level. Time was enough and no sectional time was present. 1-2 mcqs on SQL were also present.
This round was immediately followed by an SHL aptitude test which was basically a quick limited time check of your verbal ability and maths because many questions were to be done in 1 hour.
Given a 2-dimensional matrix of size NxN containing 0s and 1s, the task is to modify the matrix such that, if an element is 1, set its entire row and column to 1. I...
Modify a matrix by setting entire row and column to 1 if an element is 1, then count the number of 1s.
Iterate through the matrix to find elements with value 1
Use two arrays to keep track of rows and columns to be modified
Update the matrix by setting entire row and column to 1 if an element is 1
Count the number of 1s in the modified matrix
Round duration - 55 minutes
Round difficulty - Medium
It was an online video interview round on HackerEarth with simultaneous code option. It was mostly justifying your resume in the first 15 minutes. After that OOPS was majorly asked. Basics of programming including questions on STL were asked. A class which required inheritance was asked by the interviewer to write. I was helped by the interviewer if i got stuck somewhere, Some questions on implementation of hashmaps and priority queues were also asked. A puzzle was asked which luckily struct to me at that moment.
Tip 1 : Never give up
Tip 2 : When u start a topic, don't move on to next topic before you are 100% confident in previous topic
Tip 3 : Try to give maximum time on basics of a topic especially OOPS
Tip 4 : Practice everyday
Tip 1: Write only those things in resume in which you are 100% confident
Tip 2: Write maximum projects you have and be ready to explain them thoroughly
Tip 3: Don't make any silly spelling mistakes on resume
I applied via Naukri.com and was interviewed in Apr 2021. There were 5 interview rounds.
I was interviewed before Sep 2020.
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.
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...
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
Given an integer N
, your task is to determine the count of integers between 1 and N
(inclusive) that are coprime to N
.
The first line contains an intege...
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.
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.
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 ...
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.
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
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.
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.
I was interviewed before Nov 2020.
Round duration - 100 Minutes
Round difficulty - Medium
Started at 11 am. The test comprised of 2 codes, and mcqs with questions on technical cs, verbal ability, mathematical reasoning (more emphasis on data structures).
You are given a N x M
matrix of integers. Your task is to return the spiral path of the matrix elements.
The first line contains an integer 'T' which denotes the nu...
You are given a string of length N
. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...
Round duration - 60 minutes
Round difficulty - Medium
The platform was hackerearth. It was a technical interview+ hr.
The panel consisted of 2 people. One form tech another from hr. The tech person reviewed questions from first round. And gave questions on coding. HR round was taken just after the tech was over.
Given a positive integer N
, your task is to identify all prime numbers less than or equal to N
.
A prime number is a natural number greater than 1 that has no po...
You are given an array/list 'NUM' of integers. Rearrange the elements of 'NUM' such that no two adjacent elements are the same in the rearranged array.
Tip 1 : Practice Aptitude thoroughly (indiabix is a really good website)
Tip 2 : Make an attractive CV. Take samples from your seniors. Include an objective line which highlights the position you're seeking for in the company
Tip 3 : Practice Data structures from gfg or youtube in a language that you're most comfortable with. Basics are important.
Tip 4 : Learn to code basic data structures. Upto Linked list.
Tip 1 : Include objective line. Change this in your cv according to the company you're applying for
Tip 2 : Follow a formal simple easy to understand format. Don't get too crafty. Highlight strengths
Top trending discussions
Some of the top questions asked at the Amadeus interview -
The duration of Amadeus interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 84 interviews
Interview experience
based on 609 reviews
Rating in categories
10-15 Yrs
Not Disclosed
5-7 Yrs
Not Disclosed
Senior Software Engineer
615
salaries
| ₹0 L/yr - ₹0 L/yr |
Member Technical Staff
316
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Engineer
220
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Development Engineer II
183
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Business Analyst
182
salaries
| ₹0 L/yr - ₹0 L/yr |
Sabre
Travelport
Expedia Group
Booking Holdings