Skip to content
InterviewEra
What is InterviewEraThe platform, founder, and missionHow It WorksAdaptive interview, live captions, scoringResume-aware ScoringCV-native questions + 5-dimension feedback
Campus Placements OverviewStructured mock interviews and cohort analytics for T&P teamsSet up Campus WorkspaceCreate your campus dashboard and invite your batchT&P Product & PricingPilot pricing, bulk onboarding, and placement trackingStudent Invitation HelpHow to accept a campus invite and start practising
Software EngineerDSA, system design, OOP roundsFrontend DeveloperReact, HTML/CSS, JavaScript interviewsTCS Interview QuestionsNQT + technical + HR roundsWipro Careers HubNLTH, WILP, Turbo hiring tracksSolera Careers HubCognitive assessment + Java/SQL roundsReact Interview QuestionsHooks, state, performance topics
Interview Question GeneratorRole-specific questions in secondsATS Resume CheckerScore your resume against job rolesSTAR Answer BuilderStructure behavioral answers clearly
All ResourcesCentral guide and hub directoryBlogInterview prep articles and guidesAgentic AI Interview GuideAI-assisted coding interviews, rubrics, and prepPlacement GuideStep-by-step campus prep playbookSTAR Method GuideMaster behavioral answers
Help CenterGuides, FAQs, and supportDSA Topic MapPatterns, roadmap, and top 50 problemsSoftware Engineer GuideSWE questions and prep hubAndroid GuideKotlin, Compose, MVVM prep hubFrontend GuideReact and JavaScript interviews
PricingFor Teams
Sign inSign up
InterviewEra

InterviewEra is an AI-powered mock interview platform with adaptive follow-ups, resume-aware scoring, and structured interview preparation for campus placements and early-career hiring.

Start Mock Interview

Mock Interview

  • How It Works
  • For Teams
  • Start Mock Interview
  • Campus Placements
  • Campus Workspace
  • Help Center

Free Tools

  • Interview Question Generator
  • ATS Resume Checker
  • STAR Answer Builder

Interview Questions

  • Wipro Careers Hub
  • Solera Careers Hub
  • Amazon SDE Questions
  • Microsoft SDE Questions
  • Infosys SWE Questions
  • Infosys Java Questions
  • Freshworks Frontend Questions
  • Android Developer Questions
  • Frontend Developer Questions
  • Java Developer Questions

Resources

  • Community Hub
  • All Resources
  • Blog
  • Agentic AI Interview Guide
  • What Is Agentic AI
  • Agentic Coding Round
  • AI Prompt Engineering
  • Cursor AI Interview Guide
  • DSA Topic Map
  • Placement Guide
  • STAR Guide
  • HR Guide
  • Interview Tips

Company

  • What is InterviewEra
  • About Us
  • Pricing
  • Contact

© 2026 InterviewEra. 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 uses 16 Leadership Principles: 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, and Success and Scale Bring Broad Responsibility. Interviewers map behavioural questions directly to these LPs.

  2. 02

    Tell me about a time you demonstrated Customer Obsession.

    BehavioralMedium

    Tip: Use STAR. Show a decision that cost you time or short-term efficiency but improved customer outcome. Quantify impact (latency, conversion, tickets, NPS). Mention alternatives you rejected and why the customer-backward path was right.

  3. 03

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

    HREasy

    Tip: A Bar Raiser is a trained interviewer outside the hiring team who ensures each hire raises the long-term bar. They have veto authority and focus on Leadership Principles, judgment, and ownership — not only coding scores.

  4. 04

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

    TechnicalMedium

    Tip: Run two binary searches: leftmost (when arr[mid] == target, shrink right) and rightmost (when equal, shrink left). O(log n) each. Clarify duplicates, empty array, and target absent cases before coding.

  5. 05

    Design Amazon's order management system at scale.

    TechnicalHard

    Tip: Clarify scale (~10M orders/day), core flows (place → reserve inventory → charge → fulfill → notify), and failure modes (payment timeout after inventory hold). Use event-driven services (SQS/Kafka), idempotent APIs, and saga/compensation for partial failures.

  6. 06

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

    BehavioralMedium

    Tip: Map to Bias for Action + Are Right A Lot. Explain what data existed, what was missing, how you estimated risk, the decision deadline, and how you validated afterward. Show you acted with judgment — not recklessness.

  7. 07

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

    TechnicalMedium

    Tip: DynamoDB is managed NoSQL with single-digit ms latency, partition-key access patterns, auto-scaling, and global tables. Prefer it for high-throughput key-value access (carts, sessions, telemetry). Prefer RDS when you need complex joins, transactions across relations, and ad-hoc SQL analytics.

  8. 08

    Write code to find all permutations of a string.

    TechnicalMedium

    Tip: Backtracking: choose each unused character, recurse on remaining, backtrack. O(n × n!) time. Use a visited array or swap-based approach to avoid duplicate work. Discuss handling duplicate characters if interviewer extends the problem.

  9. 09

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

    BehavioralMedium

    Tip: Choose a real failure mapped to Learn and Be Curious + Ownership. Own the mistake, explain root cause, concrete prevention steps, and measurable improvement. Avoid humble-brags disguised as failures.

  10. 10

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

    TechnicalEasy

    Tip: Floyd's algorithm: slow (+1) and fast (+2) pointers. If they meet, cycle exists. O(n) time, O(1) space. Optional follow-up: find cycle start by resetting slow to head and advancing both one step.

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