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 Automation Engineer Interview Questions, Process, and Tips

Updated 23 Mar 2022

Amadeus Automation Engineer Interview Experiences

1 interview found

I applied via Referral and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. Sort the list of a given array of strings
  • Ans. 

    Sort a given array of strings

    • Use built-in sorting functions in programming languages

    • Implement sorting algorithms like bubble sort, merge sort, etc.

    • Consider case sensitivity and special characters

  • Answered by AI
  • Q2. Maximum number of repeating characters in a string
  • Ans. 

    The maximum number of repeating characters in a string needs to be determined.

    • Iterate through each character in the string and keep track of the count of consecutive repeating characters.

    • Update the maximum count whenever a new maximum is found.

    • Return the maximum count at the end of the iteration.

  • Answered by AI
  • Q3. Type script and java script arrow function loops if else condition
  • Ans. 

    Explaining type script and java script arrow function loops with if else condition.

    • TypeScript and JavaScript both support arrow functions for concise syntax.

    • Arrow functions can be used in loops to simplify code.

    • If-else conditions can be used with arrow functions to add logic.

    • Example: const numbers = [1, 2, 3]; numbers.forEach(num => {if(num % 2 === 0) {console.log(num + ' is even');} else {console.log(num + ' is odd');

  • Answered by AI
  • Q4. Parallel browser testing, test ng, oops concept
  • Q5. Scaled agile framework related questions
  • Q6. Selenium and cypress difference ? How to choose best tool
  • Ans. 

    Selenium is widely used for web automation while Cypress is a newer tool with better performance and debugging capabilities.

    • Selenium supports multiple programming languages while Cypress only supports JavaScript.

    • Cypress has a built-in test runner and debugger while Selenium requires third-party tools.

    • Selenium is better for cross-browser testing while Cypress is better for end-to-end testing.

    • Choose Selenium for larger a...

  • Answered by AI
  • Q7. Comparator and comparable difference?
  • Ans. 

    Comparator and Comparable are interfaces used for sorting objects in Java.

    • Comparator interface is used to sort objects based on custom criteria.

    • Comparable interface is used to sort objects based on their natural order.

    • Comparator interface has two methods: compare() and equals().

    • Comparable interface has one method: compareTo().

  • Answered by AI
  • Q8. Fail-safe and fail-fast iterator?

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well concept of automation,java script and oops

Skills evaluated in this interview

Interview questions from similar companies

I applied via Referral and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Sql based quedtion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare continuously don't lose hope

Interview Questionnaire 

1 Question

  • Q1. C++ Program to reverse a string
  • Ans. 

    C++ program to reverse a string

    • Use a loop to iterate through the string

    • Swap the characters at the beginning and end of the string

    • Continue swapping until the middle of the string is reached

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What's is meaning of success?
  • Ans. 

    Success is achieving one's goals and feeling fulfilled in the process.

    • Success is subjective and varies from person to person.

    • It can be achieving a personal or professional goal.

    • Success can also be measured by the impact one has on others.

    • Feeling fulfilled and content is a key component of success.

    • Success is not always about material possessions or wealth.

  • Answered by AI
  • Q2. Why do we work in corporate office?

Interview Preparation Tips

Interview preparation tips for other job seekers - Find all these kind of of questions and their solutions then you cracked any kind of interviews.

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

Interview Questionnaire 

1 Question

  • Q1. Javascript fundamentals and output questions Angular - routing, component, directive etc Sass

Interview Preparation Tips

Interview preparation tips for other job seekers - Positive experience

Interview Questionnaire 

1 Question

  • Q1. Oops programming,SQL server Database

Interview Questionnaire 

2 Questions

  • Q1. PLSQL= 1.What is cursor &types 2. Diff btw primay key &unique key. 3.triggers & its type. 4. View &its types. 4.bulk collection. 5.what is dynamic query & how to implement.
  • Ans. 

    Answers to questions related to PL/SQL concepts like cursor, primary key, unique key, triggers, views, bulk collection, and dynamic queries.

    • A cursor is a pointer to a private SQL area that stores information about the processing of a SELECT or DML statement

    • Primary key uniquely identifies each record in a table, while a unique key ensures that all values in a column are distinct

    • Triggers are stored programs that are fire...

  • Answered by AI
  • Q2. Manager round= 1. What is ur goal, 2.any pressure situation u face. 3. What u will do if u have problem with work culture. 4.what u will do if u have any problem with ur team mates. 5.any situation u ha...

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Computer networking, oops, programming

I applied via Naukri.com and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Personal projects/client projects
  • Q2. Hashmap/hashtable/hashset
  • Q3. Java and Microservices
  • Q4. Rest and soap
  • Q5. Program on array
  • Ans. 

    Program on array

    • Arrays are used to store multiple values in a single variable

    • Arrays can be of any data type

    • Arrays can be accessed using index numbers

    • Arrays can be sorted and searched

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good experience

Skills evaluated in this interview

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Difference between Abstract and Interface. Explain any scenario where these concept are used.
  • Ans. 

    Abstract classes are classes that cannot be instantiated and can have both abstract and non-abstract methods. Interfaces are contracts that define methods that must be implemented by a class.

    • Abstract classes can have constructors while interfaces cannot

    • A class can implement multiple interfaces but can only inherit from one abstract class

    • Abstract classes can have instance variables while interfaces cannot

    • Interfaces are ...

  • Answered by AI
  • Q2. MVC Routing and Attribute. How can we use two models in a one single view.
  • Ans. 

    To use two models in a single view with MVC Routing and Attribute, we can create a ViewModel.

    • Create a ViewModel that contains the properties of both models

    • Populate the ViewModel with data from both models in the controller

    • Pass the ViewModel to the view

    • Access the properties of both models in the view using the ViewModel

  • Answered by AI
  • Q3. SQL Joins, Stored Procedure, Functions, Display current day, month and year.
  • Q4. What is abstraction, inheritance and polymorphism. Explain each one in detail.
  • Ans. 

    Abstraction, inheritance and polymorphism are three fundamental concepts in object-oriented programming.

    • Abstraction is the process of hiding complex implementation details and providing a simplified interface for the user.

    • Inheritance is the mechanism by which one class acquires the properties and behavior of another class.

    • Polymorphism is the ability of an object to take on many forms. It allows objects of different cla...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for OOP's Concept and SQL.

Skills evaluated in this interview

Amadeus Interview FAQs

How many rounds are there in Amadeus Automation Engineer interview?
Amadeus interview process usually has 1 rounds. The most common rounds in the Amadeus interview process are Technical.
What are the top questions asked in Amadeus Automation Engineer interview?

Some of the top questions asked at the Amadeus Automation Engineer interview -

  1. selenium and cypress difference ? How to choose best t...read more
  2. type script and java script arrow function loops if else condit...read more
  3. sort the list of a given array of stri...read more

Tell us how to improve this page.

Amadeus Automation Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
644 salaries
unlock blur

₹11.1 L/yr - ₹36 L/yr

Member Technical Staff
333 salaries
unlock blur

₹13 L/yr - ₹33 L/yr

Software Engineer
221 salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Software Development Engineer II
197 salaries
unlock blur

₹12.8 L/yr - ₹29.4 L/yr

Software Developer
182 salaries
unlock blur

₹7.7 L/yr - ₹25 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
Did you find this page helpful?
Yes No
write
Share an Interview