InterviewEra.com

AI-powered mock interviews and resume-aware scoring — built for Indian campus and early-career hiring. Now in private beta.

Start Mock Interview
Secure payments via Razorpay

Tools

  • Question Generator
  • ATS Resume Checker
  • STAR Builder

Interview Questions

  • Software Engineer Questions
  • TCS Interview Questions
  • React Interview Questions

Resources

  • Blog
  • Placement Guide
  • STAR Method Guide

Company

  • About
  • Pricing
  • Contact

© 2026 InterviewEra.com. All rights reserved.

Privacy PolicyTermsRefundRanchi, Jharkhand, India
Interview Questions›Amazon

Global MNC · Bengaluru

Amazon Interview Questions 2026

Amazon India combines DSA rounds with Leadership Principles-based behavioral interviews and a Bar Raiser round.

Interview rounds
4
Avg. package
18–45 LPA
Fresher hiring
Experienced only
HQ
Bengaluru

Process: Online Assessment → Technical × 2 → Bar Raiser

Amazon Interview Questions

Placement-oriented · Updated 2026
  1. 01

    What are Amazon Leadership Principles and how many are there?

    HREasy

    Tip: Amazon has 16 Leadership Principles (LPs): Customer Obsession, Ownership, Invent and Simplify, Are Right A Lot, Learn and Be Curious, Hire and Develop the Best, Insist on Highest Standards, Think Big, Bias for Action, Frugality, Earn Trust, Dive Deep, Have Backbone, Deliver Results, Strive to be the World's Best Employer, Success and Scale Bring Broad Responsibility.

  2. 02

    Tell me about a time you demonstrated Customer Obsession.

    BehavioralMedium

    Tip: STAR format strictly. Customer Obsession: you made a decision that cost you time/resources but was clearly right for the customer. Avoid abstract answers — specific metrics matter ("reduced ticket resolution time by 40%"). Bar Raiser will probe for depth: "what were the alternatives you considered?"

  3. 03

    What is the Bar Raiser role in Amazon's interview process?

    HREasy

    Tip: Bar Raiser: a trained interviewer from outside the hiring team who ensures each new hire raises the bar. They have veto power. They focus on LPs, not just technical skills. To prepare: have diverse STAR stories covering multiple LPs — the Bar Raiser often asks cross-LP questions like 'how did you balance Dive Deep with Bias for Action?'

  4. 04

    Given a sorted array with duplicates, find the first and last position of a target element.

    TechnicalMedium

    Tip: Two binary searches: one finds the leftmost occurrence (when arr[mid] == target, continue searching left), one finds the rightmost. O(log n) each. If the array were unsorted, O(n) linear scan. Amazon expects O(log n) — always ask about input properties before coding.

  5. 05

    Design Amazon's order management system at scale.

    TechnicalHard

    Tip: Start with requirements: 10M orders/day. Core: order service → inventory service → payment service → fulfillment service via async events (SQS/Kafka). Database: relational for order state transitions, NoSQL for catalog. Eventual consistency between services — show how to handle payment failure after inventory reserved.

  6. 06

    Tell me about a time you had to make a decision with incomplete data.

    BehavioralMedium

    Tip: This tests 'Are Right A Lot' + 'Bias for Action'. Structure: what data you had, what you were missing, how you estimated/proxied the gaps, the decision, and outcome. The key insight Amazon looks for: you didn't wait for perfect information, but you also didn't guess blindly.

  7. 07

    What is Amazon DynamoDB and when would you choose it over RDS?

    TechnicalMedium

    Tip: DynamoDB: fully managed NoSQL (key-value + document), single-digit millisecond latency, auto-scaling, multi-region replication, serverless pricing. Choose DynamoDB for: high-throughput simple key lookups (shopping cart, sessions), IoT data. Choose RDS for: complex SQL joins, ACID transactions across multiple tables.

  8. 08

    Write code to find all permutations of a string.

    TechnicalMedium

    Tip: Backtracking: fix one character at each position, recurse on the rest, backtrack. O(n!) time and space. For a string of length n, there are n! permutations. Optimise: use a visited array instead of string slicing for O(n) space improvement. Amazon coding rounds expect backtracking fluency.

  9. 09

    Tell me about a time you failed and what you learned from it.

    BehavioralMedium

    Tip: Tests 'Learn and Be Curious'. Choose a real, meaningful failure — not a humble-brag. Show: you owned the failure (no blame-shifting), diagnosed the root cause, took concrete action to prevent recurrence, and improved as a result. Amazon interviewers can detect rehearsed 'failures' instantly.

  10. 10

    Implement a function to detect a cycle in a linked list.

    TechnicalEasy

    Tip: Floyd's cycle detection (tortoise and hare): slow pointer moves 1 step, fast moves 2. If they meet, there's a cycle. O(n) time, O(1) space. To find the cycle start: reset slow to head, keep fast at meeting point, advance both one step — they meet at cycle start. Amazon tests this variant too.

How to prepare for a Amazon interview

Amazon India interviews follow a 4-round process. Here is what to expect and how to prepare for each stage.

  1. 1Online Assessment→
  2. 2Technical × 2→
  3. 3Bar Raiser
  • ✓LeetCode is mandatory: solve 150–200 Medium and Hard problems. Focus on trees, graphs, dynamic programming, and sliding window patterns.
  • ✓Study system design deeply: read "Designing Data-Intensive Applications" (Kleppmann) and review common designs (URL shortener, rate limiter, feed system).
  • ✓Prepare 5–6 detailed STAR stories covering: impact you drove, a failure you owned, a technical disagreement you navigated, and a time you led without authority.
  • ✓Practise thinking aloud: interviewers evaluate reasoning, not just answers. Verbalise every assumption and trade-off.
  • ✓Bring documented examples of production impact — metrics, scale, and business outcomes matter here.
  • ✓Mock interviews matter: use Pramp or peer practice to simulate 45-minute coding rounds with a timer running.

Practice a full Amazon mock interview

Upload your resume and get questions scored across technical depth, communication, structure, confidence, and relevance — the same criteria Amazon panels use.

Start free mock interviewFree question generator

Roles you can target at Amazon

  • Amazon SWE questions
  • Amazon DA questions
  • Amazon MLE questions

Practice tools

  • Amazon question generator
  • ATS resume checker
  • STAR answer builder

Similar companies to consider

  • Google questions
  • Microsoft questions

Guides and resources

  • All interview questions
  • STAR method with examples
  • HR interview answer tips
  • Software engineer interview guide