Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Amazon Team. If you also belong to the team, you can get access from here

Amazon Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Amazon Senior Manager Interview Questions and Answers

Updated 4 Jan 2025

Amazon Senior Manager Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Talk me through your prior experience
  • Q2. Questions on Amazon Leadership principles

Interview Preparation Tips

Topics to prepare for Amazon Senior Manager interview:
  • ALPs
  • Digital Marketing

I applied via Referral and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Have you have told No to your Manager and why did u say ? What is the impact of that ?
  • Q2. What is the risk you have taken in your in proffesional life and what was the impact

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident and have a big example of what happened in your job experience.

Senior Manager Interview Questions Asked at Other Companies

Q1. 1. What you understand the requirement of shuttering material at ... read more
asked in Tata Motors
Q2. Types of pumps and for which process which types of pumps are req ... read more
asked in Tata Motors
Q3. What can you do if Shortage of our parts for customer ??
asked in Flipkart
Q4. - what will you do to double revenue of your organisation
asked in Yes Bank
Q5. Which funds do you recommend for long term Investment in mutual f ... read more

Senior Manager interview

user image Udemy

posted on 16 Nov 2021

Senior Manager Jobs at Amazon

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Can you provide details about your experience with market research?
  • Q2. Can you provide details about your experience in handling a team?

Interview Preparation Tips

Interview preparation tips for other job seekers - Effective communication is the essential skill required.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. What lessons have you learned from your experiences in your previous company?
Round 2 - Technical 

(2 Questions)

  • Q1. What are the different types of financial derivatives?
  • Q2. What are corporate actions and what are their various types?

Interview Preparation Tips

Interview preparation tips for other job seekers - While it is a good opportunity for freshers, experienced professionals may find the upper management to be quite toxic. For the company to grow, a change in management is necessary.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Minimum Knight Moves (LC Medium)
  • Q2. OS, CN, DB concepts like multithreading, semaphore, tcp vs udp, transaction and ACId properties. Java concepts like stack vs heap(memory), error vs exception. Any 1 Project discussion for 10 mins

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all the fundamental concepts of operating systems and databases. Refer to the company-tagged questions from LC.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Print the nodes of a n-ary tree in an arc wise manner as seen from the outside.
  • Ans. 

    Print nodes of n-ary tree in arc wise manner from outside

    • Traverse the tree level by level from outside to inside

    • Use a queue to keep track of nodes at each level

    • Print the nodes at each level in a clockwise or anticlockwise manner

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Uber Senior Software Engineer interview:
  • n-ary tree

Skills evaluated in this interview

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

It was a project to make automation VM creation with powershell.

Round 2 - Technical 

(4 Questions)

  • Q1. How we can access different types of hardware on console?
  • Ans. 

    Different types of hardware can be accessed on console through device drivers and APIs.

    • Use device drivers to communicate with hardware components such as printers, scanners, and network cards

    • Utilize APIs provided by hardware manufacturers to access specific functionalities of hardware devices

    • Interact with hardware through command line tools or graphical user interfaces

  • Answered by AI
  • Q2. Powershell command to make checkpoint on scvmm?
  • Ans. 

    Use the New-SCVMCheckpoint cmdlet in PowerShell to create a checkpoint on SCVMM.

    • Use the New-SCVMCheckpoint cmdlet in PowerShell

    • Specify the VM name and checkpoint name as parameters

    • Example: New-SCVMCheckpoint -VM 'VMName' -Name 'CheckpointName'

  • Answered by AI
  • Q3. What were your last 2-3 projects?
  • Q4. About different types of OSs.

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Explain your current role
  • Q2. How do you analyse the credit metrics of a firm
  • Ans. 

    I analyse credit metrics of a firm by evaluating financial statements, debt levels, profitability, liquidity, and industry trends.

    • Reviewing financial statements to assess revenue, expenses, and profitability

    • Analyzing debt levels and debt-to-equity ratios to evaluate financial leverage

    • Assessing liquidity ratios such as current ratio and quick ratio to determine short-term solvency

    • Examining industry trends and economic f...

  • Answered by AI
  • Q3. Differentiate between contractual and structural obligation
  • Ans. 

    Contractual obligations are legally binding agreements between parties, while structural obligations are inherent responsibilities within a system or organization.

    • Contractual obligations are based on agreements between parties, often outlined in contracts or agreements.

    • Structural obligations are inherent responsibilities within a system or organization, such as following policies and procedures.

    • Contractual obligations ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics well-polished
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2023. 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 - Technical 

(2 Questions)

  • Q1. Given array of integer create subarray with sum = 0
  • Ans. 

    Create subarrays with sum = 0 from given array of integers.

    • Iterate through the array and keep track of the running sum.

    • Store the running sum in a hashmap and check if the current sum - any previous sum equals 0.

    • If yes, then the subarray between those two indices has a sum of 0.

  • Answered by AI
  • Q2. Left view of binary tree
  • Ans. 

    The left view of a binary tree is the set of nodes visible when the tree is viewed from the left side.

    • Traverse the tree in a level order manner and keep track of the first node at each level.

    • Use a queue to store nodes at each level and update the left view nodes accordingly.

    • Example: For a binary tree with root node 1, left child 2, and right child 3, the left view would be [1, 2].

  • Answered by AI

Skills evaluated in this interview

Amazon Interview FAQs

How many rounds are there in Amazon Senior Manager interview?
Amazon interview process usually has 1 rounds. The most common rounds in the Amazon interview process are One-on-one Round.
How to prepare for Amazon Senior Manager interview?
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 Amazon. The most common topics and skills that interviewers at Amazon expect are Capacity Planning, Operations, Project Management, Scheduling and WFM.

Tell us how to improve this page.

Amazon Senior Manager Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Amazon Senior Manager Salary
based on 229 salaries
₹22.9 L/yr - ₹88.3 L/yr
147% more than the average Senior Manager Salary in India
View more details

Amazon Senior Manager Reviews and Ratings

based on 19 reviews

4.1/5

Rating in categories

3.9

Skill development

3.3

Work-life balance

3.9

Salary

3.6

Job security

3.9

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 19 Reviews and Ratings
Senior Manager

Chennai

8-15 Yrs

₹ 20-65 LPA

Senior Manager, Community Engagement, Asia

Bangalore / Bengaluru

9-21 Yrs

Not Disclosed

Explore more jobs
Customer Service Associate
4k salaries
unlock blur

₹0.6 L/yr - ₹5 L/yr

Transaction Risk Investigator
3.1k salaries
unlock blur

₹2.3 L/yr - ₹6.5 L/yr

Associate
2.8k salaries
unlock blur

₹0.8 L/yr - ₹6.6 L/yr

Senior Associate
2.5k salaries
unlock blur

₹2 L/yr - ₹10.1 L/yr

Program Manager
2.1k salaries
unlock blur

₹9 L/yr - ₹36 L/yr

Explore more salaries
Compare Amazon with

Flipkart

4.0
Compare

TCS

3.7
Compare

Google

4.4
Compare

Netflix

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