I applied through LinkedIn for SDE2 position. Recruiter reached out to me, explained about the interview process.
First was online test, there were 3 questions to be solved in 90 mins. I forgot the questions, but those were relatively simple.
Round 1
Interviewer asked me about work experience, then some basic fundamentals about how a webapp works.
Then we jumped into DSA. Given a Binary search tree, print the K-th largest node.
Round 2
Craft demonstration
A problem statement was given 48 hours prior to the interview.
In a online game service, return the top k score and name of the players.Fetching top k scores can get complicated depending upon what is the expectation of the interviewer. Here is a good example of one such problem statement -
Technical round:
You are given a list of price of orders. Given an amount, find out the maximum orders that can be executed. Also print the orders which got executed.
Example : Orders [7 5 3 3], amount - 13
Max order executed = 3, orders executed - 7 3 3
HR Round:
Pretty much everything from Amazon LP.