I applied online. The process took 4 weeks. I interviewed at Amazon
Interview
Round 1 - HR connect Round 2 - Online Coding - Data Structured and Algorithms Round3 - In Person interview Round 4 - In Person interview Round 5 - In Person interview
I applied online. The process took 2 months. I interviewed at Amazon (Bengaluru) in Mar 2022
Interview
Interview went outstanding, but they didn't even care to respond me back for rejection/ selection for about 8 months. Then, they selected someone else (I found through different source, recruiter didn't care to send rejection mail yet)
I applied online. I interviewed at Amazon in Sep 2022
Interview
I gave the written round so far. The exam was on hacker earth with two not so difficult questions.
Both were medium level questions from leet code. One related the priority queue and the other one was basic math based question.
You are also suppose to answer two subjective questions. In that you will have to tell them the approach that you used while solving the question with space and time complexity.
Interview questions [1]
Question 1
Amazon | OA | Prime Air time
28.0K
VIEWS
17
Last Edit: February 23, 2022 6:42 AM
Anonymous User
Position: SDE 1
Location: Bengaluru, India.
YoE: 1 year 3 months.
Platform: Hackerrank
Problem:
This problem is a variant of closest pair sum. You'll be given two arrays
arr1 = { {1, 2000}, {2, 3000}, {3, 4000} }
arr2 = { { 1, 5000 }, {2, 3000} }
the first element of every pair represents id and the second value represents the value.
and a target x = 5000
Find the pairs from both the arrays whose vaue add upto a sum which is less than given target and should be closest to the target.
Output for the above example:
{ {1, 2} } // Note that the output should be in id's