I applied through a recruiter. The process took 6 weeks. I interviewed at Amazon in Mar 2014
Interview
I got contacted via Linked In by a recruiter. The recruiter was always very nice and very helpful; the recruiting people gave me advises and told me what to expect in the interviews and what topics to study, it felt like they were kind of on my side and wanted to help me succeed in the interviews.
I first got a phone technical interview that lasted about 30 minutes. They asked me some general data structures questions and then we used ColabEdit for coding; I just got one single coding problem to solve, they asked me to write function to efficiently look for all the phone numbers from a list A that were part of a list B (I solved it by using a Hash Table and my interviewer was happy with the solution).
Then I got a second phone interview. The second interview was very similar to the first one; I got some data structures and algorithms questions and then they gave me another coding problem to solve on ColabEdit, they asked me to write a function that would receive the root of a binary tree as input parameter and would restructure the tree so that the final result was the same tree but vertically mirrored. I wrote a function and my interviewer was happy with it.
After the two phone interviews, they asked me to fly to Seattle for the final round of interviews that last the whole day. They put me in a nice hotel and payed for all the expenses. I got 5 interviews in total, each one lasting about 1 hour.
First onsite interview: They asked me general questions and asked me to describe some of my past projects; then asked me to design and code a Cache system. They told me they didn't know the right answer and they just wanted to see what I would come up with, they participated in the design suggesting things and asking questions.
Second onsite interview: They asked me to create an algorithm to find all the strongly connected components of a graph (very though question in my opinion). Lucky me I had studied some graphs theory and I was able to remember Tarjan's algorithm to find strongly connected components. I reproduced the algorithm from what I remembered and I think I did it right (although some times the interviewers are more interested in seeing how you approach a problem rather than knowing the solution, so not sure if knowing the answer played against me).
Third onsite interview: One of the amazon guys took me out for lunch to a place neat place near amazon and we just chatted and towards the end of the interview he started asking me some behavioral questions.
Fourth onsite interview: On this one I interviewed with a PM and a leader from one of the Amazon teams. The Amazon team lead asked me to design an eCommers website. I think I struggled a little bit with this one because I was not prepared for architectural questions or designed, I kind of just focused on algorithms.
Fifth onsite interview: The last guy just asked me to write some easy code to perform some task that I forgot, but it was very easy.
In all the 5 interviews they all asked me behavioral questions related to the Amazon Values (study the Amazon Values, this is extremely important for them).
Although I struggled in the third onsite interview, I really felt like my overall performance had been great and I thought I was going to get an offer; but at the end they didn't extend an offer. I asked for some feedback to know what areas I was weak to work on them but they told me that they cannot provide feedback because of their policies.
Interview questions [1]
Question 1
They asked me to create an algorithm to find all the strongly connected components of a graph.
Surprisingly easy — I expected tougher questions, but the coding round felt more like a warm-up. The main challenge was a DSA problem about counting islands in a 2D grid, which led to a discussion on DFS versus BFS and handling large grids. Funny enough, I had revisited that exact type of question while prepping on PracHub, which made me feel more confident. The interview wrapped up with a behavioral round, and I accepted an offer, but ultimately decided to decline it for another opportunity. Overall, it was a smooth experience.
Interview questions [1]
Question 1
Number of Islands — given a 2D grid of '1's (land) and '0's (water), count the number of connected islands. Walk through DFS vs BFS, and discuss how to avoid revisiting cells (in-place mutation vs visited set) and what changes if the grid is huge and must stream from disk.
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