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 QA Engineer Interview Questions and Answers for Freshers

Updated 6 Jul 2024

Amadeus Senior QA Engineer Interview Experiences for Freshers

2 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Java related qs

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

Interview Questionnaire 

1 Question

  • Q1. What is SRS, BRD
  • Ans. 

    SRS stands for Software Requirements Specification and BRD stands for Business Requirements Document.

    • SRS is a document that outlines the functional and non-functional requirements of a software system.

    • BRD is a document that outlines the business requirements of a project.

    • SRS is used by developers and testers to understand what needs to be built and tested.

    • BRD is used by project managers and stakeholders to understand t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and have clear domain knowledge

Senior QA Engineer Interview Questions Asked at Other Companies for undefined

Q1. How do you get data from a file in selenium
Q2. How can you execute a test case number of times?
Q3. How can you exclude a tets case from execution?
Q4. what are alpha testing and beta testing?
Q5. Difference between List and Set

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Program to find all possible combinations of elements from two sets of arrays such that the sum of elements is equal to one of the elements in the array itself.
  • Ans. 

    Program to find all possible combinations of elements from two sets of arrays such that the sum of elements is equal to one of the elements in the array itself.

    • Create two arrays of integers

    • Loop through both arrays and find all possible combinations

    • Check if the sum of elements is equal to any element in the array

    • Return all combinations that meet the criteria

  • Answered by AI
  • Q2. Program to find the next bigger number for the given number by just interchanging it's digits.ex- for 533224, answer is 533242
  • Ans. 

    Program to find the next bigger number for the given number by interchanging its digits.

    • Convert the number to a string to access individual digits

    • Start from the rightmost digit and find the first digit that is smaller than the digit to its right

    • Swap this digit with the smallest digit to its right that is greater than it

    • Sort the digits to the right of the swapped digit in ascending order

    • Convert the string back to a numb

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have been through 5 interview rounds in MakeMyTrip including one 1 written test followed by 4 face to face interview. Most of the questions asked were related to Java only. Many programs were asked to write algorithm for the given problem based on DS.

Be confident and prepare well on your DS and Algorithms concepts. Practice more on programming some basic problems.

Skills evaluated in this interview

I was interviewed before Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a written test with 2 coding problems.

  • Q1. 

    Combination Sum Problem Statement

    Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be c...

  • Ans. 

    The task is to find all unique combinations in an array where the sum is equal to a given target sum, with elements in non-decreasing order.

    • Use backtracking to generate all possible combinations.

    • Sort the array to ensure elements are in non-decreasing order.

    • Keep track of the current combination and sum while exploring the array.

    • Recursively explore all possible combinations.

    • Return the valid combinations that sum up to th

  • Answered by AI
  • Q2. 

    Next Greater Number Problem Statement

    Given a string S which represents a number, determine the smallest number strictly greater than the original number composed of the same digits. Each digit's frequenc...

  • Ans. 

    The task is to find the smallest number greater than the given number with the same set of digits.

    • Iterate from right to left to find the first digit that can be swapped with a larger digit to make the number greater.

    • Swap this digit with the smallest digit to its right that is larger than it.

    • Sort all digits to the right of the swapped digit in ascending order to get the smallest number.

    • If no such number exists, return -

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMakeMyTrip interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Oct 2022. There were 6 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 - Initial Discussion 

(1 Question)

  • Q1. Basics on Automation
Round 3 - Coding Test 

2 programming question moderate level

Round 4 - Technical 

(1 Question)

  • Q1. Java Questions/ Selenium Question/ SQL
Round 5 - One-on-one 

(1 Question)

  • Q1. Managerial Round. Puzzle/ Basic program
Round 6 - HR 

(1 Question)

  • Q1. Salary Discussion, basic HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Go for it. Good Company to work with.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Api status codes, api debugging questions
  • Q2. If you get 500 error how to debug.
  • Ans. 

    To debug a 500 error, check server logs, review code changes, test API endpoints, and use debugging tools.

    • Check server logs for error details

    • Review recent code changes that may have caused the error

    • Test API endpoints using tools like Postman

    • Use debugging tools like Chrome DevTools or Firebug

  • Answered by AI
  • Q3. One java string question merge two strings diagonally.
  • Ans. 

    Merge two strings diagonally in a Java array of strings.

    • Iterate through each row and column to merge characters diagonally

    • Keep track of the diagonal position to insert characters from both strings

    • Handle cases where strings have different lengths

    • Example: String 1: 'hello', String 2: 'world', Merged: 'hweolrllod'

    • Example: String 1: 'abc', String 2: '123', Merged: 'a1b2c3'

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Handle objects in webtable
  • Ans. 

    To handle objects in a webtable, you can use methods like findElement, getText, getAttribute, etc.

    • Use findElement method to locate the object in the webtable

    • Use getText method to retrieve the text of the object

    • Use getAttribute method to get specific attribute value of the object

    • Iterate through rows and columns to handle multiple objects in the webtable

  • Answered by AI
  • Q2. Multiple window handles
  • Ans. 

    Multiple window handles allow a QA engineer to interact with multiple browser windows during testing.

    • Window handles are unique identifiers assigned to each browser window opened by the application.

    • QA engineers can switch between window handles to perform actions on different windows.

    • Example: driver.getWindowHandles() in Selenium returns a set of window handles.

    • Example: driver.switchTo().window(handle) is used to switch

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About Project , daily routines , SQL, unix
  • Q2. On core java programs on arrays, strings etc
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Simple Java questions on string and arrays

Round 2 - Coding Test 

Framework level knowledge is checked

Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation

Interview Preparation Tips

Topics to prepare for Oracle Senior QA Engineer interview:
  • Java
  • Javascript
  • Testng
  • Cucumber
Interview preparation tips for other job seekers - Good company to work with
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. String manipulation questions without using default methods like string buffer
  • Q2. Selenium programs and Xpaths for dynamic tables
  • Ans. 

    Selenium can be used to automate testing of dynamic tables by using Xpaths to locate elements.

    • Identify unique attributes of table elements to create stable Xpaths

    • Use functions like contains(), starts-with(), or ends-with() in Xpaths for dynamic content

    • Consider using parent-child relationships in Xpaths for nested tables

  • Answered by AI

Skills evaluated in this interview

Amadeus Interview FAQs

How many rounds are there in Amadeus Senior QA Engineer interview for freshers?
Amadeus interview process for freshers usually has 1 rounds. The most common rounds in the Amadeus interview process for freshers are One-on-one Round.
How to prepare for Amadeus Senior QA Engineer interview for freshers?
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 Automation, Quality Control Management, Test Case Design, Test Case Execution and Test Planning.
What are the top questions asked in Amadeus Senior QA Engineer interview for freshers?

Some of the top questions asked at the Amadeus Senior QA Engineer interview for freshers -

  1. What is SRS, B...read more
  2. Requirement Analysis Questions, Functional domain knowledge, Testing Questio...read more
  3. Java related...read more

Tell us how to improve this page.

Amadeus Senior QA Engineer Interview Process for Freshers

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 905 Interviews
Amdocs Interview Questions
3.7
 • 532 Interviews
Salesforce Interview Questions
4.0
 • 272 Interviews
Adobe Interview Questions
3.9
 • 252 Interviews
Oyo Rooms Interview Questions
3.3
 • 227 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 173 Interviews
Chetu Interview Questions
3.3
 • 170 Interviews
Dassault Systemes Interview Questions
4.0
 • 160 Interviews
View all
Amadeus Senior QA Engineer Salary
based on 112 salaries
₹10 L/yr - ₹22.5 L/yr
55% more than the average Senior QA Engineer Salary in India
View more details

Amadeus Senior QA Engineer Reviews and Ratings

based on 12 reviews

4.1/5

Rating in categories

4.0

Skill development

4.5

Work-life balance

4.4

Salary

4.5

Job security

4.2

Company culture

3.7

Promotions

4.0

Work satisfaction

Explore 12 Reviews and Ratings
Senior Software Engineer
611 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