← Blog

Amazon SDE Interview Process: Phone Screen to Offer

By the DevInterview TeamPublished August 3, 2026

The Amazon SDE interview has four stages: a recruiter call, an online assessment (mostly for SDE I and new grads), one technical phone screen, and a virtual onsite "loop" of four to six interviews that each run about an hour. Two things make Amazon different from other big tech loops: every single round scores you against the company's Leadership Principles, and one interviewer, the Bar Raiser, comes from outside the hiring team and effectively holds veto power. Plan for four to eight weeks from first call to decision.

Below is what each stage looks like, what gets asked, and where most candidates lose points. We run mock interviews all day, and the Amazon loop is the one where strong coders most often stumble on the behavioral half.

The loop at a glance

StageFormatLengthFocus
Recruiter screenPhone call20-30 minBackground, role, logistics
Online assessmentAsync coding + work styles70-105 min1-2 coding problems, LP survey
Phone screenLive coding (CoderPad)45-60 min1-2 algorithm problems + LP questions
Onsite loop4-6 back-to-back interviews~60 min eachCoding, system/technical design, behavioral

The online assessment is standard for SDE I and university hires and is sometimes skipped for experienced SDE II candidates who go straight to a phone screen. Levels map roughly as SDE I (L4), SDE II (L5), and SDE III / Principal (L6+), with system design weight increasing sharply from L5 up.

Stage 1: Recruiter call and the online assessment

The recruiter screen is a fit and logistics conversation, not a technical filter. Expect questions about your current stack, why Amazon, and comp and location. Be ready to name a specific team or domain interest; it helps routing.

The online assessment (OA) is where the technical filter starts for junior roles. It is delivered async, usually through HackerRank or Amazon's own platform, and typically includes:

OA problems skew toward strings, arrays, hash maps, and greedy logic rather than exotic dynamic programming. Problems in the style of Longest Substring Without Repeating Characters (sliding window plus a hash set) and Hand of Straights (a greedy grouping problem you solve with a count map and a heap or ordered map) are representative of the difficulty band. Get these fully passing, not "mostly passing," because partial test coverage reads as a weak signal.

Stage 2: The technical phone screen

One live coding interview, usually 45 to 60 minutes in a shared editor like CoderPad or Amazon Chime with a collaborative doc. You get one or two problems plus one or two Leadership Principles questions squeezed into the same hour, so time management matters.

The bar here is not just a correct answer. Amazon interviewers score problem-solving out loud, clean code, edge case handling, and complexity analysis. State your approach and its time and space cost before you type, then confirm the interviewer is on board. Silent coding is the most common way we see candidates tank an otherwise solvable question.

Typical phone screen problems match the mid-to-senior band in our Amazon bank: Add Two Numbers (linked list digit addition with carry handling), Reverse Integer and String to Integer (atoi), which both hinge on 32-bit overflow checks, and Longest Palindromic Substring (expand-around-center or DP). None are tricky for their own sake, but all reward crisp edge case handling: empty input, overflow, single character, and null nodes.

Stage 3: The virtual onsite loop

The loop is four to six interviews, back to back or split across two days, each around 60 minutes. A typical SDE II loop looks like:

  1. Two coding rounds (data structures and algorithms).
  2. One system or low-level design round (weighted heavily at L5+).
  3. One to two behavioral-heavy rounds anchored on Leadership Principles.
  4. The Bar Raiser round, which blends technical and behavioral.

The Bar Raiser is the structural feature people underestimate. This interviewer is a trained employee from a different org with no stake in filling the role, and their job is to keep the hiring bar consistent. They can sink an otherwise positive loop. Treat every round as if it were the deciding one, because in a debrief the Bar Raiser's assessment carries outsized weight.

Coding rounds in the loop push harder than the phone screen. This is where a staff-level problem like Median of Two Sorted Arrays shows up, which requires a real binary search on the partition of two arrays in O(log(m+n)), not a merge-and-index shortcut. Zigzag Conversion appears as a simulation and indexing test that looks easy and trips people on the row-direction bookkeeping.

Leadership Principles run through everything

This is the part strong engineers neglect. Amazon evaluates you against its Leadership Principles (there are 16, including Customer Obsession, Ownership, Dive Deep, Bias for Action, and Deliver Results), and behavioral questions appear in nearly every round, not just the designated behavioral ones. A coder who nails all the algorithms but gives vague, unstructured stories often gets a "no hire" or "inclined no."

Prepare six to eight detailed stories from your own work, each mapped to two or three principles, and deliver them in STAR format (Situation, Task, Action, Result) with concrete metrics. Interviewers are trained to probe with follow-ups like "what would you do differently" and "what was the data," so your stories need real depth, not a rehearsed headline. If you want a structured approach, our guide on the STAR method for engineers walks through full examples.

Common LP prompts:

How to prepare (and what to skip)

Split your time roughly 60/40 between coding and behavioral. Most candidates over-index on rare dynamic programming and under-practice explaining their code and telling tight LP stories.

For coding, drill the patterns Amazon actually favors: sliding window, two pointers, hash-map counting, binary search, linked list manipulation, and greedy. You can practice these against the real Amazon set on our Amazon company page, and run full timed mocks on the practice tool so you get used to narrating under a clock.

A focused two to three week plan:

Practice talking while you code. The Amazon rubric rewards communication as much as correctness, and it is the cheapest skill to improve.

FAQ

How many rounds is the Amazon SDE interview?

For most candidates it is four stages: a recruiter call, an online assessment (for SDE I and new grads), one technical phone screen, and a virtual onsite loop of four to six interviews. Experienced SDE II candidates sometimes skip the OA. Each loop interview runs about 60 minutes.

What is the Amazon Bar Raiser?

The Bar Raiser is a trained interviewer from a team outside the one hiring you, present to keep the hiring standard consistent across the company. They evaluate both technical skill and Leadership Principles and carry strong influence in the debrief, including the ability to block an offer. Prepare for at least one round to be tougher and more probing than the rest.

How hard are Amazon coding questions?

Mostly medium difficulty, weighted toward strings, arrays, hash maps, linked lists, and greedy, with the occasional hard problem like Median of Two Sorted Arrays in the onsite loop. Amazon cares less about obscure tricks and more about clean code, edge cases, complexity analysis, and communication.

Do I really need to prepare Leadership Principles stories?

Yes. Behavioral questions appear in almost every round, and weak, unstructured stories sink candidates who code well. Prepare six to eight STAR-format stories with real metrics, each mapped to two or three of the 16 principles.

How long does the whole process take?

Typically four to eight weeks from the recruiter call to a decision, though it varies by team, level, and scheduling. The onsite loop itself is usually completed in one or two days, and debrief plus offer follow within days to a couple of weeks.

Sources

The real one is coming. Be ready for it.

Take a realistic AI-led mock interview with questions top companies actually ask, with live voice and real feedback.

Start a mock interview

Your first interview is free · no credit card required

Keep reading