Tip 1 : practice atlease 100+ medium questions from leetcode
Tip 2 : Do atleast one major project which include whole full stack
Tip 3 : regularly participate in codechef and codeforces contests
Tip 1 : make sure the resume is completely filled with no larger empty spaces
Tip 2 : make sure you are pretty confident about everything you mentioned in the resume
test contains 8 coding questions out of which 2 are easy, 2 are medium and 4 are hard. test was conducted between 11-12 AM. test duration was 1hr.



step 1 : solved using a while loop which iterates until n becomes 0
step 2 : add all the values of n%10 and update n to (n/10)
13 students got selected for this round out of which 3 got selected for the next one. I was asked about DSA questions on Linked Lists and trees. then last 15 minutes I was asked about MERN stack completely and deeply. All this process has gone through the same day of round1 but at the time around 2-4 PM



The Linked Lists, where a1, a2, c1, c2, c3 is the first linked list and b1, b2, b3, c1, c2, c3 is the second linked list, merging at node c1.

I have used maps to store the adress of the first list by traversing the whole list. then I started traversing the 2nd list if I found the same adress any time I am returnig the index of that particular node.




1. Make in-place changes, that is, modify the nodes given a binary tree to get the required mirror tree.
firstly I found the preorder traversal of the normal binary tree and reversed that array of values and again assigned every value back to the tree in the same manner. then found the inorder traversal of that binary tree.
3 students got selected for this round out of which 2 got selected for the next HR round. In this round I was asked for DSA questions which are easy questions. but the questions on web development was quiet harder compared to previous round. last 30 minutes I have explained one of my favourite project completely every line of the code. then cheers, finally I got selected for the next HR round.



initially we will find all the factors of n and then add all the factors that are prime numbers.
In this round I was asked more about mongoDB and NodeJS. and also some common HR questions like where will you see yourself after 5 years and such amazing stuff.
Where will you see yourself in the next five years?
Tip 1 : don't answer like in some other big company that might lead to disqualify.
Tip 2 : answer something like you will be advantageous in some way for the company.
mongodb relations.
How to connect relations between
2 databases in mongodb
Tip 1 : go through the documentation of mongodb for the relations concept

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