Amazon.com Computer Science Intern Interview Questions & Reviews
Updated Jan 18, 2012 – Interview questions and reviews posted anonymously by interview candidates.
|
Difficulty Rating [?] Based on 1 ratings |
Interview Experience [?] Based on 1 ratings
|
Amazon.com has 96,075 connections on Glassdoor
| 1–1 of 1 Amazon.com Interview | Sort by |
Computer Science Intern at Amazon.com
Posted Jan 18, 2012
4.0
Difficult Interview
|
Overall Positive Experience
|
Interviewed and No Offer
|
Interviewed Jan 2012 (took a day)
In the phone interview, they asked me some technical questions about data structures and so on. I forget the exact questions.
They called me out for a 1:1 interview. The person organizing the interview, travel and stay was very helpful, and both the travel arrangements and the stay was excellent.
Interview Questions
(note, if a tree contains the same element two times, the count of duplicates is 1, not 2)
After that, they asked me to implement an appendAt function that takes two ints as arguments, and appends the second argument to the node containing the first argument in the list.
e.g for a list 1 -> 2 -> 3 -> 4 -> 5 , appendAt(3,6) would result in a list: 1 -> 2 -> 3 -> 6 -> 4 -> 5
e.g for a list 1 -> 2 -> 2 -> 3 -> 4 -> 5, appendAt(2,8) would result in: 1 - > 2 -> 8 -> 2 -> 3 -> 4 -> 5 (i.e if the first argument appears more than once in the list, then append the second argument to the first instance of the node containing the first argument)
I gave an iterative solution to the problem. The interviewer then asked me to write it recursively.
This one is really easy, I faltered on it for some reason.
Other Details
I Applied Online and the interview consisted of a Phone Interview, a 1:1 Interview and a Skills Test.
Helpful Interview?
Yes |
No
Inappropriate?


