Quick online Application, followed by a debugging challenge and then a coding challenge. Did not get past the coding challenge as my code didn't compile. Overall not too challenging, and simple application process.
I applied through college or university. I interviewed at Amazon
Interview
My friend referred me. The whole process took 3 months. I got first OA, all the question are about the math and reading. After 2 weeks, I passed it and got second OA, it is coding related, algorithm problems.
Interview questions [1]
Question 1
Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
Example:
Given nums = [2, 7, 11, 15], target = 9,
Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].
I applied online. The process took 4 weeks. I interviewed at Amazon (Seattle, WA) in Nov 2018
Interview
I had applied online for the internship role. I received an email to complete a simple debugging test. It was quite easy. Afterwards, I was asked to complete another coding and behavioural test. Behavioural was quite lengthy. Coding test contained LeetCode Easy/Medium.