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 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. Indeed, Inc. "Glassdoor," "Worklife Pro," "Bowls," and logo are proprietary trademarks of Indeed, Inc.

      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 Interview

      Oct 21, 2011
      Anonymous Interview Candidate
      Slough, Berkshire, South East England, England
      No offer
      Negative experience
      Difficult interview

      Application

      I applied online. The process took 2 days. I interviewed at Amazon (Slough, Berkshire, South East England, England) in Oct 2011

      Interview

      After applying online, I waited 30 days before being requested for an interview by an Amazon recruiter and I was set up for two phone interviews. The first interview went very well, although at times the questions were so vague that I felt like I would have to use divine power to come up with the answer that would match the question. For instance, rather than a straight forward 'what is unit testing?', I was instead asked 'what is a way to ensure that changes to a function will not have negative impact on other functions?' For me the answer is documentation - because that's how I write good conforming code that doesn't need unit testing in the first place, but go figure. Overall though, I was happy with the first interview, particularly as he made an effort to get to know me and I felt that I did well. The second interview was poor and the interviewer's style was frustrating. For example, 'how would you reverse a linked list?'. I provided a correct answer. 'What if there were no prev pointers?' I provided a correct answer. 'What if the list was so long that you can't use a memory buffer?' At that point I was annoyed... if the list is potentially that long then I would obviously put back the prev pointers. For me, an O(n^2) solution is not a solution at all. But that's not the game they want you to play. The worst part was when I gave a correct solution on how to find a common ancestor in a binary tree, but he thought it was wrong. I explained it again and it seems he understood, but then said 'are you sure that will work in all cases?' Yes, I said, I was very sure! I had drawn a binary tree diagram and tested enough cases to be absolutely positive it was correct. I even used the slowest, most reliable solution possible to avoid a repeat of the linked list annoyance that he had given me earlier. I had to keep convincing him before he eventually said 'well, let's move on'. Imagine how that felt. At that point I practically had to give up on the guy because it is annoying enough to get a couple of answers wrong but then also have your correct answers considered wrong as well! This did not leave a good impression on me, particularly knowing I would have to work with this guy. A few other questions seemed quite bizarre, but this report is long enough already. Unfortunately the recruiters also left an extremely poor impression - I would expect a phone call in the next 24 hours afterwards and then a follow up call after an official decision had been made. Instead I got a cut and paste message that wasn't even correct for my circumstances. Good luck Amazon. While I accept there may be some good people in your ranks, this experience doesn't make me want to become one of them.

      Interview questions [1]

      Question 1

      What is wrong with this code: int *ptr; *ptr = 7;
      1 Answer
      2

      Other Software Engineer Interview Reviews for Amazon

      Software Engineer Interview

      Jun 30, 2026
      Anonymous Interview Candidate
      No offer
      Neutral experience
      Average interview

      Application

      I interviewed at Amazon

      Interview

      Interviewed for silicon team. Have only been asked about the domain specific knowledge in 1st round and system design in 2nd round and C coding in 3rd round. The interviews were 50 mins each.

      Interview questions [1]

      Question 1

      Difference between igpu and dgpu
      Answer question

      Software Engineer Interview

      Jun 30, 2026
      Anonymous Interview Candidate
      Toronto, ON
      Declined offer
      Positive experience
      Easy interview

      Application

      I interviewed at Amazon (Toronto, ON)

      Interview

      First round with hr screening - 2 leetcode questions then hr manager screening then the loop which consists of 4 interviews each an hour long. The 4 interview questions they asked where three medium leetcode questions. And one system design interview question about how to shadow deploy a test software to millions of users.

      Interview questions [1]

      Question 1

      What projects did you work on
      Answer question

      Software Engineer Interview

      Jun 28, 2026
      Anonymous Interview Candidate
      Declined offer
      Neutral experience
      Average interview

      Application

      I interviewed at Amazon

      Interview

      The phone screen went longer than expected, focusing heavily on implementation details. The interviewer really grilled me on my approach to a Least Recently Used (LRU) cache, asking how I'd combine a hashmap with a doubly linked list. I felt well-prepared since I had gone through system design examples on PracHub, which made me comfortable discussing eviction policies. The later rounds included more technical questions and behavioral interviews, but in the end, I received an offer, though I ultimately decided to decline. Overall, I’d say the process was average, with solid questions.

      Interview questions [1]

      Question 1

      Design and implement a Least Recently Used (LRU) cache supporting get(key) and put(key, value) in O(1) average time. Walk through combining a hashmap with a doubly linked list, eviction policy when capacity is exceeded, and how you'd extend it to handle thread-safe concurrent access.
      Answer question