Passa al contenutoPassa al piè di pagina
  • Lavori
  • Aziende
  • Stipendi
  • Per le aziende

      Migliora la tua carriera

      Scopri le tue potenzialità di guadagno, trova lavori da sogno e condividi approfondimenti su lavoro e vita privata in forma anonima.

      employer cover photo
      employer logo
      employer logo

      Amazon

      Azienda coinvolta

      Chi siamo
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su Amazon | Offerte di lavoro di Amazon | Stipendi di Amazon | Benefit di Amazon
      Colloqui di AmazonColloqui per Software Engineer II SDE2 presso AmazonColloquio di Amazon


      Glassdoor

      • Chi siamo
      • Contattaci

      Aziende

      • Account Business gratuito
      • Spazio per le aziende
      • Blog per le aziende

      Informazioni

      • Aiuto
      • Linee guida
      • Condizioni d'uso
      • Privacy e scelte pubblicitarie
      • Non vendere né condividere le mie informazioni
      • Strumento per l'accettazione dei cookie

      Lavora con noi

      • Inserzionisti
      • Carriere
      Scarica l'app

      • Cerca:
      • Aziende
      • Lavori
      • Località

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" e il relativo logo sono marchi registrati di Glassdoor LLC.

      Aziende seguite

      Non lasciarti sfuggire opportunità e informazioni privilegiate seguendo le aziende dove vorresti lavorare.

      Ricerche di lavoro

      Ricevi suggerimenti e aggiornamenti personalizzati avviando le tue ricerche.

      Colloquio per Software Engineer II SDE2

      5 feb 2021
      Candidato anonimo a colloquio
      Seattle, WA
      Nessuna offerta
      Esperienza positiva
      Colloquio nella media

      Candidatura

      Ho presentato la mia candidatura tramite segnalazione di un dipendente. Ho sostenuto un colloquio presso Amazon (Seattle, WA) nel mese di gen 2021

      Colloquio

      Had an OA with leetcode medium easy. After that had a one hour telephonic interview with recruiter for general resume and work ex and leadership principle questions. After that there was the final virtual onsite interview. 4 1 hour long interviews with same format : First 15 mins would be leadership principles, next 40 mins technical interview and last 5 mins questions for them. I was asked 3 coding questions and 1 System design.

      Domande di colloquio [1]

      Domanda 1

      OA: Both the questions were same as from a leetcode discuss link which has about 20 questions. Onsite: 1. Number of islands (recursive and iterative both) 2. Leaf-Similar Trees without using an extra n space (872 on leetcode) 3. Best time to buy and sell stocks I & II (but instead of the profit return indices of when to buy and sell. 4. System design: Design the promo code (coupon code) system for amazon to avail discounts on products in cart.
      Rispondi alla domanda
      4

      Altre recensioni di colloqui per Software Engineer II SDE2 presso Amazon

      Colloquio per Software Engineer II SDE2

      27 giu 2026
      Candidato anonimo a colloquio
      Bengaluru
      Nessuna offerta
      Esperienza neutra
      Colloquio difficile

      Candidatura

      Ho presentato la mia candidatura tramite un selezionatore. Ho sostenuto un colloquio presso Amazon (Bengaluru) nel mese di giu 2026

      Colloquio

      A recruiter reached out to me regarding the opportunity. After successfully clearing the Online Assessment (OA), I was invited to the Amazon Loop Interview process. The loop comprised four rounds: two coding interviews (featuring two LeetCode Medium problems in the first round and one LeetCode Hard problem in the second), a behavioral interview focused extensively on Amazon's Leadership Principles, and a final interview with the Hiring Manager that included one coding problem and a High-Level Design (HLD) system design discussio

      Domande di colloquio [1]

      Domanda 1

      You are given a 2D grid representing a terrain map with three types of cells: • 'T' - Radio tower (emits signals) • 'M' - Mountain (blocks signals) • '.' - Empty cell (signals pass through) Each radio tower broadcasts signals in 4 cardinal directions (up, down, left, right). A signal travels in a straight line until it either: • Hits a mountain (signal stops) • Reaches the grid boundary (signal stops) Your task: Determine which pairs of radio towers can communicate with each other. Two towers can communicate if a signal from one tower can reach the other tower. Input Format grid = [ ['T', '.', '.', 'T'], ['.', 'M', '.', '.'], ['T', '.', '.', 'T'] ] Example 1: Basic Line of Sight Input: T . . T . . . . T . . T Signal Propagation: Tower (0,0) → → → reaches Tower (0,3) ✓ Tower (0,3) ↓ ↓ reaches Tower (2,3) ✓ Tower (2,0) → → → reaches Tower (2,3) ✓ Tower (0,0) ↓ ↓ reaches Tower (2,0) ✓ Output: [ ((0, 0), (0, 3)), # Top-left ↔ Top-right ((0, 3), (2, 3)), # Top-right ↔ Bottom-right ((2, 0), (2, 3)), # Bottom-left ↔ Bottom-right ((0, 0), (2, 0)) ] Total communicating pairs: 4 Coding question were building a word game feature. Given a 2d from user tray and dictionary of valid words return all the words found by connecting adjavent cells board = o a a n e t a e i h k r i f l v words = ["oath","pea","eat","rain"] Output: ["oath","eat"]
      Rispondi alla domanda

      Colloquio per Software Engineer II SDE2

      15 apr 2026
      Candidato anonimo a colloquio
      Nessuna offerta
      Esperienza neutra
      Colloquio nella media

      Candidatura

      Ho sostenuto un colloquio presso Amazon

      Colloquio

      5 rounds and each is eliminator. First 2 round is DSA and other are related to the System design. Made to the Bar Raiser round but selected for SDE 1. I rejected

      Colloquio per Software Engineer II SDE2

      31 gen 2026
      Candidato anonimo a colloquio
      Nessuna offerta
      Esperienza positiva
      Colloquio difficile

      Candidatura

      Ho sostenuto un colloquio presso Amazon

      Colloquio

      OA was difficult which had two Leetcode Hard problems Recruiter was very helpful and gave a lot of time inbetween rounds to prepare Next rounds were drive rounds, I was asked to solve two DP Hard problems on the given time limit of 60 mins

      Domande di colloquio [1]

      Domanda 1

      A Variation of Number of Islands
      Rispondi alla domanda