Tip 1: Don’t get nervous during interviews.
Tip 2: Practice at least 250 Questions.
Tip 1: Mention your projects wisely.
Tip 2: Don’t mention any lies in the resume.
Amcat test with 90 MCQs on aptitude and puzzles.
How to measure 45 minutes using two identical ropes which each take 1 hour to burn completely. (Learn)
At 9 am in the morning I reported at their Noida office and then my interview started, they asked me everything DSA, development, CS fundamentals, my projects.



Rotate the linked list k times.
The idea is to first convert the linked list to circular linked list by updating the next pointer of last node to the head of linked list. Then, traverse to the kth node and update the head of the linked list to the (k+1)th node. Finally, break the loop by updating the next pointer of kth node to NULL.
Basic HR questions were asked.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?