Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For Employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      Amazon

      Engaged Employer

      About
      Reviews
      Pay & benefits
      Jobs
      Interviews
      Interviews
      Related searches: Amazon reviews | Amazon jobs | Amazon salaries | Amazon benefits | Amazon conversations
      Amazon interviewsAmazon Software Engineer II SDE2 interviewsAmazon interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Center
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy & Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent Posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls," and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalized job recommendations and updates by starting your searches.

      Software Engineer II SDE2 Interview

      Jan 12, 2022
      Anonymous Interview Candidate
      Bengaluru
      No offer
      Negative experience
      Average interview

      Application

      I applied through a recruiter. The process took 2 months. I interviewed at Amazon (Bengaluru) in Sep 2021

      Interview

      Had 5 rounds of interview in total. Pathetic interview process. The recruiter randomly invites people for interview. Same recruiter invited me twice in a week's gap when I was already working on my existing interviews with her. Totally unprofessional.

      Interview questions [1]

      Question 1

      Singed NDA. Cannot disclose questions.
      Answer question

      Other Software Engineer II SDE2 Interview Reviews for Amazon

      Software Engineer II SDE2 Interview

      Jun 27, 2026
      Anonymous Interview Candidate
      Bengaluru
      No offer
      Neutral experience
      Difficult interview

      Application

      I applied through a recruiter. I interviewed at Amazon (Bengaluru) in Jun 2026

      Interview

      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

      Interview questions [1]

      Question 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"]
      Answer question

      Software Engineer II SDE2 Interview

      Apr 15, 2026
      Anonymous Interview Candidate
      No offer
      Neutral experience
      Average interview

      Application

      I interviewed at Amazon

      Interview

      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

      Software Engineer II SDE2 Interview

      Jan 31, 2026
      Anonymous Interview Candidate
      No offer
      Positive experience
      Difficult interview

      Application

      I interviewed at Amazon

      Interview

      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

      Interview questions [1]

      Question 1

      A Variation of Number of Islands
      Answer question