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

Updated 3 Jan 2025

Amadeus SDE Interview Experiences

3 interviews found

SDE Interview Questions & Answers

user image Anonymous

posted on 3 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Core java questions
  • Q2. Depper into projects
  • Ans. 

    Discussing past projects in depth to showcase skills and experience

    • Explain the problem statement and your approach

    • Discuss the technologies used and challenges faced

    • Highlight your contributions and the outcome

    • Mention any learnings or improvements for future projects

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Basic and sone tricky hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 rounds technical and hr .go through resume and core concepts and dsa

SDE Interview Questions & Answers

user image Ayush Chikate

posted on 20 Dec 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

4 sections verbal logical aptitude and coding(in C)

Round 2 - Technical 

(2 Questions)

  • Q1. Puzzles (GFG Puzzles)
  • Q2. Making patterns of triangle and diamond
  • Ans. 

    Creating patterns of triangle and diamond using characters

    • For triangle pattern, use nested loops to print spaces and characters in each row

    • For diamond pattern, divide the diamond into two triangles and print accordingly

    • Examples: Triangle pattern - * ** *** Diamond pattern - * *** ***** *** *

  • Answered by AI

SDE Interview Questions Asked at Other Companies

asked in Infosys
Q1. Return Subsets Sum to K Problem Statement Given an integer array ... read more
asked in Nagarro
Q2. Partition to K Equal Sum Subsets Problem Given an array of intege ... read more
asked in Nagarro
Q3. Sort a "K" Sorted Doubly Linked List Given a doubly-linked list w ... read more
asked in Nagarro
Q4. Maximum Meetings Selection You are tasked with scheduling meeting ... read more
asked in Amazon
Q5. There is a 12 km road and a contractor who is in-charge of repair ... read more

SDE Interview Questions & Answers

user image Anonymous

posted on 4 Sep 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Apti test was easy 30 min test

Round 2 - HR 

(2 Questions)

  • Q1. How many year of experience
  • Ans. 

    I have 5 years of experience in software development.

    • I have worked in various roles such as software engineer, senior software engineer, and team lead over the past 5 years.

    • During my time in the industry, I have gained experience in developing web applications, mobile apps, and backend systems.

    • I have also worked with technologies such as Java, Python, JavaScript, and SQL.

    • I have experience in Agile methodologies and hav...

  • Answered by AI
  • Q2. Your current ctc ?
  • Ans. 

    My current CTC is $80,000 per year.

    • My current CTC is $80,000 per year.

    • I am currently earning $80,000 annually.

    • My current salary package is $80,000 per annum.

  • Answered by AI

Interview questions from similar companies

SDE Interview Questions & Answers

UKG user image Anonymous

posted on 20 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 coding question, 19 mcqs on dsa, c++, java, cs fundamnetals

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Online coding test with 2 coding questions

Round 2 - Technical 

(1 Question)

  • Q1. What is storage differnece for files in ram
  • Ans. 

    Files in RAM are stored temporarily for quick access by the CPU.

    • RAM (Random Access Memory) is volatile memory used for temporary storage of data and instructions.

    • Files stored in RAM are accessed much faster than files stored on a hard drive.

    • RAM is cleared when the computer is turned off, so files stored in RAM are not persistent.

    • Examples of files stored in RAM include open applications, running processes, and cached da

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

Adobe user image Anonymous

posted on 5 Oct 2023

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 - Aptitude Test 

DSA,COMPUTER FUNDAMENTALS

Round 3 - One-on-one 

(1 Question)

  • Q1. TELL ABOUT TREE TRAVERSALS
  • Ans. 

    Tree traversals are methods used to visit each node in a tree data structure in a specific order.

    • Inorder traversal: Visit left subtree, then root, then right subtree

    • Preorder traversal: Visit root, then left subtree, then right subtree

    • Postorder traversal: Visit left subtree, then right subtree, then root

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

Thomson Reuters user image Prashansa Chaudhary

posted on 27 Jan 2024

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

I applied via Campus Placement and was interviewed before Jan 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

Aptitude is pretty easy

Round 2 - Group Discussion 

Need to be good in communication skills

Round 3 - Technical 

(1 Question)

  • Q1. Focused more on Technical skills and behavioral + tech
Round 4 - One-on-one 

(1 Question)

  • Q1. Resume and project based questions
Round 5 - HR 

(1 Question)

  • Q1. Current work and Salary

SDE Interview Questions & Answers

Adobe user image Anonymous

posted on 5 Jun 2015

Interview Questionnaire 

18 Questions

  • Q1. Detail questions on copy constructors were asked
  • Q2. Deep copy, shallow copy (need for explicitly writing copy constructor)
  • Q3. Operating system concepts such as memory Management and semaphores, critical section
  • Q4. Overloading, Overriding(Function and operator both)
  • Q5. Virtual Functions
  • Q6. Resume based interview
  • Q7. Some more discussions on virtual classes and functions, overloading, overriding, copy constructors
  • Q8. Puzzles such as no of 0s in 100!, and water- jug problem
  • Q9. Merge two double linked list. What will be the difference if they are singly linked list
  • Ans. 

    To merge two double linked lists, traverse to the end of the first list and connect it to the head of the second list.

    • Traverse to the end of the first list

    • Connect the last node of the first list to the head of the second list

    • If the lists are singly linked, we need to traverse to the end of the first list and connect it to the head of the second list. But we also need to keep track of the last node of the first list to ...

  • Answered by AI
  • Q10. Make a data structure such that it can store an image dynamically
  • Ans. 

    A dynamic data structure for storing images as arrays of strings.

    • Use a 2D array of strings to represent the image pixels.

    • Implement resizing methods to adjust the size of the image.

    • Include methods for adding, removing, and modifying pixels.

    • Consider using compression techniques to reduce memory usage.

    • Support various image formats such as JPEG, PNG, and BMP.

  • Answered by AI
  • Q11. Copy fixed no of bytes from source to destination and its test cases( ex: copy(source, destination,bytes) so now command copy(a,a+3,8) will not give correct results in some cases and copy(a,a-4,8) will n...
  • Ans. 

    Copying fixed number of bytes from source to destination and its test cases.

    • Ensure source and destination are not overlapping

    • Check if the number of bytes to be copied is greater than the available space in the destination

    • Handle cases where source or destination is NULL

    • Test cases should cover all possible scenarios including edge cases

  • Answered by AI
  • Q12. Some puzzles like weighing problem..N Balls given all of same weight except one..What is the max value of N so that u can figure out the ball with less weight in 2 rounds or 3 rounds
  • Q13. Some HR questions about family and yourself
  • Q14. Detail discussion on virtual functions
  • Q15. Optimized fibonacci program
  • Ans. 

    An optimized Fibonacci program computes Fibonacci numbers efficiently.

    • Use memoization to store previously computed values.

    • Use iterative approach instead of recursive approach.

    • Use bitwise operators to perform arithmetic operations faster.

    • Use matrix exponentiation to compute Fibonacci numbers in logarithmic time.

  • Answered by AI
  • Q16. Solution for solving problems generated by virtual functions
  • Ans. 

    Virtual functions can cause problems due to their dynamic nature, but can be solved using various techniques.

    • Use pure virtual functions to ensure all derived classes implement the function

    • Use interface classes to define a common interface for all derived classes

    • Use smart pointers to manage memory and avoid memory leaks

    • Use virtual destructors to ensure proper destruction of objects

    • Avoid excessive use of virtual function

  • Answered by AI
  • Q17. Some good questions on compile time error check, link time error check and run time error check
  • Q18. One Image puzzle

Interview Preparation Tips

College Name: NA

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. What are the challenges you faced in your current role
  • Q2. How did you overcome the challenges

Interview Preparation Tips

Topics to prepare for VMware Software Billing Executive interview:
  • Finance
  • Order Management

Amadeus Interview FAQs

How many rounds are there in Amadeus SDE interview?
Amadeus interview process usually has 2 rounds. The most common rounds in the Amadeus interview process are HR, Technical and Coding Test.
What are the top questions asked in Amadeus SDE interview?

Some of the top questions asked at the Amadeus SDE interview -

  1. Making patterns of triangle and diam...read more
  2. Depper into proje...read more
  3. Basic and sone tricky hr questi...read more

Tell us how to improve this page.

Amadeus SDE Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

SDE Interview Questions from Similar Companies

Oracle SDE Interview Questions
3.7
 • 4 Interviews
Amdocs SDE Interview Questions
3.7
 • 2 Interviews
Adobe SDE Interview Questions
3.9
 • 2 Interviews
Sabre SDE Interview Questions
4.0
 • 1 Interview
UKG SDE Interview Questions
3.1
 • 1 Interview
View all
Amadeus SDE Salary
based on 18 salaries
₹9.3 L/yr - ₹15.9 L/yr
38% less than the average SDE Salary in India
View more details

Amadeus SDE Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

2.0

Salary

4.0

Job security

5.0

Company culture

3.0

Promotions

3.0

Work satisfaction

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

₹11.1 L/yr - ₹33.3 L/yr

Member Technical Staff
316 salaries
unlock blur

₹14.9 L/yr - ₹42.5 L/yr

Software Engineer
219 salaries
unlock blur

₹5.9 L/yr - ₹21 L/yr

Senior Business Analyst
182 salaries
unlock blur

₹10.5 L/yr - ₹25 L/yr

Software Development Engineer II
182 salaries
unlock blur

₹12 L/yr - ₹26.8 L/yr

Explore more salaries
Compare Amadeus with

Sabre

4.0
Compare

Travelport

4.5
Compare

Expedia Group

3.8
Compare

Booking Holdings

2.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview