I applied online. I interviewed at Amazon in Jan 2013
Interview
I can't say much, because I'm still at the second step of the process. I just received am email telling me that I need to schedule the second interview. So here is my experience with the first phone interview.
The interviewer started by giving me some information about his work and his devision, then I asked me to talk about my background and some of the projects that I was involved in. Surprisingly, the man was very friendly and he gave me all the time I needed to express myself and I was speaking to him I could hear him typing something on the keyboard (most probably comments). Then he said I'm going to ask you some conceptual questions. He showered me, if I may say, with questions about polymorphisms, passing values by variables vs actual values, sorting algorithms, binary search trees and their efficiency in terms of time and space.
In general I answered them mostly right, but he grilled me a little bit in the explanation of the binary tree searching algorithms to the point I thought I just blew the interview off. After that he asked to write a code using an online editor where he can see what I write listen to me walk him through the code. He asked to write a code to find the intersection between to lists. I made my assumptions that these lists are integers saved in arrays and he said OK. I wrote the code under pressure, but as I was moving through I kept creating methods and consider optimum solution. I guess that's what got me to the second interview (my programming skills not my knowledge about binary search trees complexity.
I'm waiting for the second interview and I will definitely share my experience here after it is done.
It started with an OA, and then after a few weeks, I got invited to four rounds of interviews: technical and behavioral at 3 of the 4, and behavioral only at one.
I applied online. I interviewed at Amazon (Calgary, AB) in Jun 2026
Interview
Online Assessment is the first step in the process. I didn’t have an HR phone screening and went straight to the OA after applying. It was sent to me about a week after I submitted my application.
Interview questions [1]
Question 1
The first question is LeetCode style algorithms question, and the second question gives a full stack repo (choice of Java, NodeJS, or Django) and asks to solve a backend issue which is causing a bug in the frontend. Unit tests must pass to pass the second question. You can run both backend/frontend indivdually or together
I applied online. I interviewed at Amazon (Santa Clara, CA) in Jun 2026
Interview
Recruiter reached out and set up an onsite loop after the initial steps. Four back to back rounds in one day. Two coding heavy rounds run by senior engineers, one round with the hiring manager, and one behavioral round with a bar raiser. Mix of leadership principles and data structures throughout. Heard back within a week.
Interview questions [1]
Question 1
Standard BFS grid problem. Given a grid, find the time for all cells to reach a target state where the spread happens one layer at a time.
How did you answer: Clarified the constraints, walked through the approach, then coded a clean BFS from all starting points at once. Tracked the number of layers until everything was covered.