Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Amadeus Media Senior Software Engineer Interview Questions and Answers

Updated 23 Mar 2023

Amadeus Media Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Sep 2022. There were 4 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 Resume tips
Round 2 - Aptitude Test 

Standard aptitude questions asked maths statistics

Round 3 - Technical 

(2 Questions)

  • Q1. Two coding questions
  • Q2. String sorting questions
Round 4 - HR 

(1 Question)

  • Q1. Standard hr round personal question

Interview Preparation Tips

Interview preparation tips for other job seekers - Your standard dsa, problems would suffice be open fun

Interview questions from similar companies

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 Apr 2022. There were 4 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 Resume tips
Round 2 - Coding Test 

Easy to medium-level coding questions on DSA

Round 3 - Technical 

(2 Questions)

  • Q1. DSA question along with basic java needs
  • Q2. Create custom linked list
  • Ans. 

    A custom linked list is a data structure where each node contains a value and a reference to the next node.

    • Define a Node class with value and next properties

    • Define a LinkedList class with head property and methods to add, remove, and traverse nodes

    • Example: let list = new LinkedList(); list.add(1); list.add(2); list.remove(1);

  • Answered by AI
Round 4 - System design 

(1 Question)

  • Q1. Of an elevator and some questions on how to implement it with some scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared with DS and System design along with your programming language basics

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2022. There were 4 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 Resume tips
Round 2 - Coding Test 

Algorithm and database and datastructures

Round 3 - Coding Test 

Language and basic understanding

Round 4 - HR 

(2 Questions)

  • Q1. Too much Negotiations
  • Q2. Why this much of salary we give you

Interview Preparation Tips

Interview preparation tips for other job seekers - Look for somewhere else if you are in tech. This is not a tech company. They are media house.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is react, and why you chose it
  • Ans. 

    React is a JavaScript library for building user interfaces, known for its efficiency and flexibility.

    • React allows for the creation of reusable UI components, making development faster and more efficient.

    • It uses a virtual DOM for optimal performance by only updating the necessary components when data changes.

    • React's component-based architecture promotes code reusability and maintainability.

    • It has a large and active comm...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design a page to fetch list of items via api call and render them with pagination
  • Ans. 

    Design a page to fetch and render items with pagination via api call

    • Use a frontend framework like React or Angular to create the page

    • Make an API call to fetch the list of items

    • Implement pagination logic to display a limited number of items per page

    • Include navigation buttons for users to move between pages

    • Consider adding a search feature to filter items

  • Answered by AI
Round 2 - Coding Test 

Questions around js currying, closure, promises

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. C++ basic questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic HR questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain about opps concepts
  • Q2. What is the SOLID principal

I was interviewed in Jul 2022.

Round 1 - Aptitude Test 

MCQ questions and two coding questions for this test.

Round 2 - Technical 

(1 Question)

  • Q1. C#, asp.net questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA algorithm.
Vdhxid hdusjsj hdujdjd jdidid hdidid jdidjs jdidjs iis
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Why do you prefer to change the current organization

Interview Preparation Tips

Interview preparation tips for other job seekers - Managerial round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is closure
  • Ans. 

    A closure is a function that has access to its own scope, the scope in which it was defined, and the global scope.

    • A closure is created when a function is defined inside another function.

    • The inner function has access to the variables and parameters of the outer function, even after the outer function has finished executing.

    • Closures are useful for creating private variables and functions in JavaScript.

    • They can also be us...

  • Answered by AI
  • Q2. What is Encapsulation
  • Ans. 

    Encapsulation is the process of hiding internal details and providing a public interface for accessing and manipulating data.

    • Encapsulation bundles data and methods together into a single unit.

    • It helps in achieving data abstraction and data hiding.

    • By encapsulating data, we can control access to it and prevent unauthorized modifications.

    • Encapsulation promotes code reusability and maintainability.

    • Example: A class in objec...

  • Answered by AI
  • Q3. What is Inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows for code reuse and promotes the concept of hierarchy.

    • The class that is being inherited from is called the superclass or base class.

    • The class that inherits from the superclass is called the subclass or derived class.

    • The subclass can access the public and protected members of the s...

  • Answered by AI
  • Q4. What is Abstraction
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details.

    • Abstraction involves hiding unnecessary details and exposing only relevant information.

    • It allows developers to create models or representations that capture the essential aspects of a system.

    • Abstraction helps in managing complexity, improving code reusability, and enhancing maintainability.

    • For example, in object-oriented programm...

  • Answered by AI
  • Q5. What is Polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

    • Polymorphism is a fundamental concept in object-oriented programming.

    • It enables code reusability and flexibility.

    • Polymorphism can be achieved through method overriding and method overloading.

    • Example: A parent class Animal can have multiple child classes like Dog, Cat, and Bird. They can ...

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Amadeus Media Interview FAQs

How many rounds are there in Amadeus Media Senior Software Engineer interview?
Amadeus Media interview process usually has 4 rounds. The most common rounds in the Amadeus Media interview process are Resume Shortlist, Aptitude Test and Technical.
What are the top questions asked in Amadeus Media Senior Software Engineer interview?

Some of the top questions asked at the Amadeus Media Senior Software Engineer interview -

  1. String sorting questi...read more
  2. Two coding questi...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

JUSPAY

No Interviews

INTERVIEWS

Toshiba Software India

No Interviews

INTERVIEWS

Dunzo

No Interviews

INTERVIEWS

Amadeus Media

No Interviews

INTERVIEWS

Fynd

No Interviews

Tell us how to improve this page.

Amadeus Media Senior Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Consultant
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Amadeus Media with

Manappuram Finance

3.9
Compare

PVR Inox

4.0
Compare

Abbott

4.1
Compare

Emcure Pharmaceuticals

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