I applied through university. The process took 4 weeks. I interviewed at Amazon (Coimbatore) in Jan 2016
Interview
the first round was hosted on hackerrank which had 20 mcqs and 2 programming questions. The mcqs were based on data strutures and programming questions were simple but logical. the second round was phone screening and two questions were asked. one on bst and another on linked list
Interview questions [2]
Question 1
given a bst, replace each node with sum of itself and the nodes with value greater than the current node
given a lined list seperate the even and odd elements in the list preserving the order of its occurance.
eg: 1 -> 2 -> 3-> 4
the expected output is 1 -> 3 -> 2-> 4
I applied online. I interviewed at Amazon (Vancouver, BC) in Apr 2026
Interview
They reached out with questions in an email after I applied. Applying early helps, I applied on the first day w/o a referral.
1 hour interview behavioural + technical. It was about 20 mins for 1 behavioural question, and 40 mins on the technical.
Technical question was Reorganize String from lc. I took too long on it unfortunately.
Interview questions [1]
Question 1
Behavioral Question: tell me about a time you failed. + some followups on the project i talked about. (roadmap + planning)
I applied online. I interviewed at Amazon (Seattle, WA) in Feb 2025
Interview
Behavorial OA -> ~2 weeks till followup & scheduling for first loop -> Phone Screen (hour long interview, 15min behavioral & 45min for a LC Easy-Medium problem) -> ~few days for followup & scheduling final loop -> Final Interview Block (3 45 min interviews with a 15 min break in between (in total a 3hr block), LC Easy->Medium plus a system design question) -> ~few days till offer!
Interview questions [1]
Question 1
(Coding) In total, 4 questions with a difficulty of a LC Easy to Medium. Also be prepared for the situational STAR questions that they ask!
I applied through a recruiter. The process took 1 week. I interviewed at Amazon (Haifa) in Feb 2022
Interview
1.5 hours, interviewer started with a brief introduction on AWS and on annapurna labs and then asked me about my experience and studies then gave me a C ADT question
Interview questions [1]
Question 1
the question was in C, givem a memory segment represented by struct( struct has a memory pointer and a size integer), and a copy function that needed to be implemented..the struct was a memory segment and they wanted me to implement a function that copies an array of memory segments to another array of memory segments (array and memory segment lengths are not the same in dst and src)