Tip 1: Focus on how projects are made and understand the system's shortcomings and advantages.
Tip 2: Prepare for DSA thoroughly and practice daily coding challenges for 2–3 months.
Tip 1: Have clarity in one domain—whether it's web development, Android, iOS, or ML.
Tip 2: Prepare for SQL, as almost every company uses it.
The timing was as per my convenience. I had 24 hours to start the test, and once started, I had 1 hour to complete it. The test was online, the site was well-designed, and there were no glitches.


In the below binary tree, suppose the given target node value is 2 and ‘K’ is 2.

There are 3 node’s that are at distance ‘2’ from node value ‘2’:
2-> 5 -> 7 node( 7 )
2-> 5 -> 8 node( 8 )
2-> 1 -> 3 node( 3 )
Hence we return an array of all three node’s value that are at distance ‘2’ from the given target node’s value ‘2’ = ‘{ 7, 8, 3 }’.
1) You can return the list/vector in any order of the node’s value.
2) If there is no node that is at distance ‘K’ from the given target node then return an empty list/vector.
It happened in the evening through Google Meet.
There were three different glasses and unlimited water. Can you fill the third glass using the first two glasses if you don’t have anything to measure with?
The timing was in the evening.
Design ATM.

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