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 -
The process took 3 weeks. I interviewed at Amazon in Feb 2011
Interview
2 phone Interviews and 1 face to face interview. Interview questions.
What is recall is this
Quickest way to find missing number and missing slot in array of 100 elements
Iterate through the array and compute the sum of all numbers. Now, sum of natural numbers from 1 to N, can be expressed as Nx(N+1)/2. N=100.
Subtract the sum of the array from Nx(N+1)/2, where N=100.
That is the missing number. The empty slot can be detected during the iteration in which the sum is computed.
// will be the sum of the numbers in the array.
int sum = 0;
int idx = -1;
for (int i = 0; i < arr.length; i++) {
if (arr[i] == 0) {
idx = i;
} else {
sum += arr[i];
}
}
// the total sum of numbers between 1 and arr.length.
int total = (arr.length + 1) * arr.length / 2;
System.out.println("missing number is: " + (total - sum) + " at index " + idx);
I applied online. The process took 1 day. I interviewed at Amazon in Sep 2010
Interview
They picked my resume from monster.com. I got a mail to schedule a phone interview and they asked me to apply for software development position on their website.
The interview was purely technical. The interviewer asked mostly data structures and algorithms questions; binary search tree, linked lists, complexities of some known algorithms etc. There was one coding question. The interviewer asked to explain how I would go about solving the problem and then gave 1 hour to code and mail it.
Interview questions [1]
Question 1
Gave a string of characters and asked them to store in a binary search tree in such a way that it can be extracted in exactly the same order.