Global MNC · Bengaluru
Amazon India combines DSA rounds with Leadership Principles-based behavioral interviews and a Bar Raiser round.
Process: Online Assessment → Technical × 2 → Bar Raiser
What are Amazon Leadership Principles and how many are there?
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.
Tell me about a time you demonstrated Customer Obsession.
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?"
What is the Bar Raiser role in Amazon's interview process?
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?'
Given a sorted array with duplicates, find the first and last position of a target element.
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.
Design Amazon's order management system at scale.
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.
Tell me about a time you had to make a decision with incomplete data.
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.
What is Amazon DynamoDB and when would you choose it over RDS?
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.
Write code to find all permutations of a string.
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.
Tell me about a time you failed and what you learned from it.
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.
Implement a function to detect a cycle in a linked list.
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.
Amazon India interviews follow a 4-round process. Here is what to expect and how to prepare for each stage.
Upload your resume and get questions scored across technical depth, communication, structure, confidence, and relevance — the same criteria Amazon panels use.