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 Production Manager Interview Questions and Answers

Updated 30 Mar 2024

Amadeus Production Manager Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic qns were asked related to process
Round 2 - One-on-one 

(1 Question)

  • Q1. Direct one to one discussion

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Mar 2018. There were 2 interview rounds.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Nature of the current job profile

General Tips: They call for walkin without provising detaila abput the the JD. Please go through the JD. If your profile does not match the requirement don't attend the interview, it is waste of your time. They will schedule to show the candidate footfall.
Skills: Communication, Body Language, Problem Solving, Leadership, Presentation Skills, Decision Making Skills
Duration: <1 week
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2022. There were 2 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 - One-on-one 

(4 Questions)

  • Q1. Why you want to join ADP
  • Q2. How you manage conflicts at work
  • Q3. Situation based questions
  • Q4. Where do you see after 5 year

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be prepared before go for the interview. Communication is important
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself , work experience etc
  • Ans. 

    Experienced professional with a background in retail management and a proven track record of driving sales and leading teams.

    • Worked as a retail manager for 5+ years, overseeing daily operations and staff management

    • Successfully implemented sales strategies that resulted in a 20% increase in revenue

    • Led a team of 15 employees, providing training and support to ensure high performance

    • Strong communication and problem-solvin

  • Answered by AI
  • Q2. How many years of leadership experience on paper
  • Ans. 

    I have 5 years of leadership experience on paper.

    • I have held leadership positions in previous jobs where I was responsible for managing teams and making strategic decisions.

    • I have completed leadership training programs and workshops to enhance my skills in leading and motivating others.

    • I have received positive feedback from supervisors and colleagues regarding my leadership abilities.

    • I have successfully led projects fr...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

Was some abstract asked to complete it

Round 2 - One-on-one 

(1 Question)

  • Q1. Behavioral interview more focused on personality
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. What did you do in your previous org?
  • Q2. How did you help with hiring?

Interview Preparation Tips

Interview preparation tips for other job seekers - Do research on payroll fundamentals

I applied via Company Website and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Data Structure related questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Java related interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Study Data structure and Java code properly

Interview Questionnaire 

1 Question

  • Q1. Spring Collections Difference between list and set What is sorted mean in hashed set java Serialization Exceptions How can you give an exception to caller method Unix- how to move a folder without g...
  • Ans. 

    Interview questions for Software Developer related to Spring, Collections, Serialization, Exceptions, Unix, Annotations, Json, Build tools, Restful services, and more.

    • List and Set are both collection interfaces in Java. List allows duplicates and maintains insertion order while Set doesn't allow duplicates and doesn't maintain any order.

    • Sorted in Hashed Set means that the elements are stored in a sorted order based on ...

  • Answered by AI

Skills evaluated in this interview

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

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Ans. 

    Find 5 missing numbers in an array of size 95 containing numbers in range 1 to 100.

    • Create a boolean array of size 100 and mark the present numbers

    • Iterate through the boolean array and find the missing numbers

    • Alternatively, use a HashSet to store the present numbers and find the missing ones

  • Answered by AI
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Amadeus Interview FAQs

How many rounds are there in Amadeus Production Manager interview?
Amadeus interview process usually has 2 rounds. The most common rounds in the Amadeus interview process are One-on-one Round and Technical.
What are the top questions asked in Amadeus Production Manager interview?

Some of the top questions asked at the Amadeus Production Manager interview -

  1. Basic qns were asked related to proc...read more
  2. Direct one to one discuss...read more

Tell us how to improve this page.

Amadeus Production Manager Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 852 Interviews
Amdocs Interview Questions
3.7
 • 514 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
Salesforce Interview Questions
4.0
 • 224 Interviews
Oyo Rooms Interview Questions
3.3
 • 219 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Chetu Interview Questions
3.3
 • 174 Interviews
AVASOFT Interview Questions
3.6
 • 162 Interviews
Dassault Systemes Interview Questions
4.0
 • 161 Interviews
View all
Amadeus Production Manager Salary
based on 6 salaries
₹34.3 L/yr - ₹50 L/yr
196% more than the average Production Manager Salary in India
View more details

Amadeus Production Manager Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
621 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