Upload Button Icon Add office photos

Filter interviews by

Amazon MX Player Senior Software Engineer 2 Interview Questions and Answers

Updated 30 Apr 2024

Amazon MX Player Senior Software Engineer 2 Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Rainwater questi
  • Q2. BST question for inorder, preorder and postorder

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Medium level DSA round from leedcode
  • Q2. Questions on JAVA and Spring
Round 2 - Technical 

(1 Question)

  • Q1. LLD round : Design Google Calender
Round 3 - One-on-one 

(1 Question)

  • Q1. HLD Round: Design distributed Task Schedular
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Design chess platform to perform turnament
  • Ans. 

    Design a chess platform for tournaments

    • Implement user registration and login functionality

    • Allow users to create or join tournaments

    • Include features for pairing players, tracking scores, and generating leaderboards

    • Provide options for different tournament formats such as round-robin or knockout

    • Include a feature for spectators to watch ongoing games

    • Implement a time control system for games

    • Allow for customization of tourna

  • Answered by AI
  • Q2. Step intersection framework

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Dsa and LLD skill

Skills evaluated in this interview

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

(1 Question)

  • Q1. Machine coding round - Design Cache
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
-

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

Round 1 - Coding Test 

Implement your own state management in React and integrate it into a React application.

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - Coding Test 

It was a simple coding test.

Round 2 - Coding Test 

There was a small coding problem involving oops concepts..

Round 3 - Technical 

(1 Question)

  • Q1. There was a simple System Design problem specifically URLShortener
Round 4 - Technical 

(1 Question)

  • Q1. There was discussion about previous projects

Interview Preparation Tips

Interview preparation tips for other job seekers - The Talent Acquisition team of Lenskart doesn't exactly show much professionalism and pretty much ghost you after an interview. Also they are a hard bargain. The interviewers however were pretty respectful and accommodating.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology,(NIT), Delhi and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Coding Test 

3 Moderate questions were asked. I managed to solve 2 completely and 1 partially.

Round 2 - Technical 

(2 Questions)

  • Q1. Question related to system design were asked.
  • Q2. He asked me to design some functions of facebook.
Round 3 - HR 

(1 Question)

  • Q1. Introduction type questions were asked. In this it will prefer only CS students
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are Microservices
  • Ans. 

    Microservices are a software architecture pattern where applications are built as a collection of small, loosely coupled services.

    • Microservices are independent and autonomous services that communicate with each other through APIs.

    • Each microservice is responsible for a specific business capability and can be developed, deployed, and scaled independently.

    • Microservices promote flexibility, scalability, and resilience in s...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. What are SOAP APIs
  • Ans. 

    SOAP APIs are a protocol for exchanging structured information in web services using XML-based messages.

    • SOAP stands for Simple Object Access Protocol

    • It is a messaging protocol that allows programs running on different operating systems to communicate with each other

    • SOAP APIs use XML to format the data being sent

    • They are commonly used in enterprise-level applications for integrating different systems

    • SOAP APIs provide a

  • Answered by AI
  • Q2. What are Rest APIs?
  • Ans. 

    REST APIs are a set of rules and protocols that allow different software applications to communicate and interact with each other over the internet.

    • REST stands for Representational State Transfer

    • REST APIs use HTTP methods like GET, POST, PUT, DELETE to perform operations on resources

    • REST APIs are stateless, meaning each request from a client to a server contains all the necessary information

    • REST APIs typically return d...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Aug 2023.

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 - Technical 

(1 Question)

  • Q1. Introduction,How many years experience, company name, domain and Background verification.
Round 3 - HR 

(1 Question)

  • Q1. How much salary except
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
-
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 

(3 Questions)

  • Q1. Q1- Array vs ArrayList
  • Ans. 

    Array is a fixed-size collection of elements, while ArrayList is a dynamic-size collection that can grow or shrink.

    • Array has a fixed length, while ArrayList can dynamically resize.

    • Array is more memory efficient, while ArrayList provides more flexibility.

    • Array can store primitive types and objects, while ArrayList can only store objects.

    • Array allows direct access to elements using index, while ArrayList requires methods...

  • Answered by AI
  • Q2. Linkedlist vs Arraylist
  • Ans. 

    LinkedList is better for frequent insertions and deletions, while ArrayList is better for frequent access.

    • LinkedList uses pointers to connect nodes, while ArrayList uses contiguous memory.

    • LinkedList has O(1) insertion and deletion, while ArrayList has O(n) for these operations.

    • ArrayList has O(1) access time, while LinkedList has O(n) for this operation.

    • LinkedList is better for implementing stacks and queues, while Arra...

  • Answered by AI
  • Q3. Nodes vs not nodes elements
  • Ans. 

    Nodes are elements with child elements, while non-nodes are standalone elements.

    • Nodes are part of a hierarchical structure, while non-nodes are not.

    • Nodes can have child elements, while non-nodes cannot.

    • Examples of nodes include HTML elements like

      and
        , while non-nodes include and .

      • Nodes are typically used in tree-like data structures, while non-nodes are used for standalone elements.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you practice DSA , pracitin linkedlist qustion as much as you can

Skills evaluated in this interview

Amazon MX Player Interview FAQs

How many rounds are there in Amazon MX Player Senior Software Engineer 2 interview?
Amazon MX Player interview process usually has 1 rounds. The most common rounds in the Amazon MX Player interview process are Technical.
What are the top questions asked in Amazon MX Player Senior Software Engineer 2 interview?

Some of the top questions asked at the Amazon MX Player Senior Software Engineer 2 interview -

  1. BST question for inorder, preorder and postor...read more
  2. Rainwater que...read more

Tell us how to improve this page.

Amazon MX Player Senior Software Engineer 2 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 429 Interviews
BigBasket Interview Questions
3.9
 • 355 Interviews
PolicyBazaar Interview Questions
3.6
 • 342 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
JustDial Interview Questions
3.5
 • 329 Interviews
View all
Graphic Designer
18 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Manager
13 salaries
unlock blur

₹16.6 L/yr - ₹28 L/yr

Software Developer
10 salaries
unlock blur

₹9.9 L/yr - ₹21 L/yr

Assistant Manager
9 salaries
unlock blur

₹7.5 L/yr - ₹18 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹29 L/yr - ₹66 L/yr

Explore more salaries
Compare Amazon MX Player with

Disney+ Hotstar

3.8
Compare

SonyLIV

1.0
Compare

ZEE5

2.8
Compare

ALTBalaji

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