Amazon Software Development Engineer Intern interview questions
based on 678 ratings - Updated Jun 12, 2026
Averageinterview difficulty
Very positiveinterview experience
How others got an interview
58%
Applied online
Applied online
28%
Campus Recruiting
Campus Recruiting
8%
Employee Referral
Employee Referral
5%
Recruiter
Recruiter
1%
Other
Other
0%
In Person
In Person
0%
Staffing Agency
Staffing Agency
Interview search
678 interviews
Viewing 606 - 610 of 678 Interviews
Amazon interviews FAQs
Software Development Engineer Intern applicants have rated the interview process at Amazon with 3 out of 5 (where 5 is the highest level of difficulty) and assessed their interview experience as 50% positive. To compare, the company-average is 59.5% positive. This is according to Glassdoor user ratings.
Candidates applying for Software Development Engineer Intern roles take an average of 35 days to get hired, when considering 2 user submitted interviews for this role. To compare, the hiring process at Amazon overall takes an average of 29 days.
Common stages of the interview process at Amazon as a Software Development Engineer Intern according to 2 Glassdoor interviews include:
Personality test: 50%
Skills test: 50%
Here are the most commonly searched roles for interview reports -
I applied through an employee referral. I interviewed at Amazon
Interview
Had 2 back-to-back phone interviews. Interviewers were very courteous. I wsa asked basic algortihms and Data structures questions. Make sure you really know BST, linkedlist and OOP design
Interview questions [1]
Question 1
Nothing was really that difficult. With basic algos and DS knowledge it is doable
I applied through a recruiter. The process took 4 weeks. I interviewed at Amazon (Seattle, WA) in Feb 2013
Interview
Applied in January through both recruiter and online. They contacted me within a week to schedule phone interviews, which mostly focused on technical aspects. I was asked a few questions, including comparing between different data structures. I prepared for the interviews by studying linked lists, binary trees, and graph algorithms. I was friendly with the interviewers and they were friendly back to me.
Interview questions [5]
Question 1
How would you implement an Autocomplete feature and what data structures would you use to do so?
Write a class that takes in a window size (n) in its constructor. The only method in the class takes in an integer, adds it into a sequence of numbers with that value, and returns the average of the last n values inserted into the sequence. Do not iterate over the sequence to calculate the average. Couldn't use STL.
For example, if window size (n) is 2:
update(1) returns 1
update(2) returns 1.5
update(3) returns 2.5
update(4) returns 3.5
Given: List<String> getActors(String actorName)
This function takes an actor and returns all the actors they acted with in their career. Use this function to calculate the degrees of separation between one actor to another.
Group input strings by permutations and output as a set. For example, if your input is: "abc, acb, bce, dce, cde" then your output is: "(abc, acb) (bce) (dce, cde)". Assume all input strings are of the same size. Didn't actually have to write the code for this one, but rather gave an in-depth step-by-step explanation using data structures and time and space complexity.
I applied through college or university. The process took 2 weeks. I interviewed at Amazon in Jan 2013
Interview
The call I got was a follow-up from career fair. In the two back to back interviews, I was asked to write code for string reversal, comparison of two binary trees. Then I was asked to design a OO Traffic system. Then there few questions on data structures like hash map, linked lists and I was also asked few questions on my previous projects. After ten days I got the offer.
Interview questions [1]
Question 1
Design of traffic system was little difficult. The interviewer kept finding faults with my ideas.