Software Engineer applicants have rated the interview process at Amazon with 3.3 out of 5 (where 5 is the highest level of difficulty) and assessed their interview experience as 67% positive. To compare, the company-average is 61.5% positive. This is according to Glassdoor user ratings.
Here are the most commonly searched roles for interview reports -
I applied through college or university. The process took 1 day. I interviewed at Amazon (Ithaca, NY) in Mar 2010
Interview
i had two round of interviews on campus. both related to algorithms and i was supposed to write the code. one was expression parsing and other was some tree related question.
Interview questions [1]
Question 1
something related to virtual function. not most difficult question as such but i did not know the answer
I applied through college or university. The process took 4 weeks. I interviewed at Amazon (Seattle, WA) in Nov 2012
Interview
There were two rounds telephone interviews and I was selected to interview with the engineers in customer service department.
Interview questions [1]
Question 1
It was an extended question regarding to binary tree. The tree consists of the numbers and the mathematics operations, like +, -, *, /. The root is the operator and its two children is the numbers. The question is how to calculate the result of the whole tree. I suggested to DFS the tree to reach the bottom. But my interviewer wanted me to use another way to solve the problem. I finally use recursion to solve the problem but it consumed too much time and I even didn't have time to do the second question.