I applied online. The process took 4 weeks. I interviewed at Amazon (Granada) in May 2019
Interview
I apply via Amazon.jobs. They sent me an assesment with two coding problems. After that, they arrange a phone screen interview (that consist in one live coding problem). I never went further in the process.
Interview questions [1]
Question 1
Given a list of pairs of start-end destinations, return an pair with the start and the end of a route that visit each destination.
I applied through college or 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