Tip 1 : Focus on problem-solving rather than projects.
Tip 2 : Puzzles are often asked, prepare them well.
Tip 1 : Include good projects
Tip 2 : Keep the subjects you are well prepared with. They go deep into concepts.
The round consisted of around 25 MCQs and 2 coding questions. MCQs were based on Assertion and Reasoning, Logical Reasoning, and data manipulation. The questions were of medium level and around 30-35 minutes were allotted for this section. The coding part consisted of one easy ad-hoc question and one question based on Dynamic Programming.
knightPosition: {3,4}
targetPosition: {2,1}
The knight can move from position (3,4) to positions (1,3), (2,2) and (4,2). Position (4,2) is selected and the ‘stepCount’ becomes 1. From position (4,2), the knight can directly jump to the position (2,1) which is the target point and ‘stepCount’ becomes 2 which is the final answer.
1. The coordinates are 1 indexed. So, the bottom left square is (1,1) and the top right square is (N, N).
2. The knight can make 8 possible moves as given in figure 1.
3. A Knight moves 2 squares in one direction and 1 square in the perpendicular direction (or vice-versa).
After the coding round, around 15 candidates were selected for the process. This was a F2F interview organized by the Placement Cell of the college. The interviewers were mainly checking the problem-solving skills of the candidates.
1. A sequence [arr0, arr1,…, arr(n-1)] is called an Arithmetic progression if for each 'i' ( 0 ≤ i < n - 1) the value arr[i+1] − arr[i] is the same.
2. There is exactly one missing number in the given sequence.
3. All the numbers present in the sequence are distinct.
4. It is the guarantee that the first and last elements of the sequence are not missing elements.
The overall run time complexity should be O(log(N)).
There are 25 horses. We are allowed to conduct multiple races among the horses and based on the result, we need to find the fastest 5 horses among them. Find what is the minimum number of races to be organized to find the required result.
After the Tech-1 round, ~10 candidates were shortlisted for the HR Round. This was organized by the Placement Cell of the college, on the campus.
Why should we hire you?
What are your job expectations?
Why DE Shaw?
Tip 1 : Practice Mock Interviews on InterviewBit, Coding Ninjas, and Pramp.
Tip 2 : Prepare answers to popular questions beforehand,
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you write a single-line comment in C++?