Tip 1 : Practice 200+ DSA question
Tip 2 : go through all the linear and non-linear data-structure concept.
Tip 3 : Do minimum two medium level projects.
Tip 1 : 2 decent projects(full-stack)
Tip 2 : Coding platform ratings and other technical achievements.
MCQs and some snippet of code.



M*M = M
Data structure's concept related question.
1. Difference in application of arrays and linkedlist.
2. Time comlexity of BST with proof.
Also 1 coding question.



You need to modify the given tree only. You are not allowed to create a new tree.
For the given binary search tree

11 will be replaced by {15 + 29 + 35 + 40}, i.e. 119.
2 will be replaced by {7 + 11 + 15 + 29 + 35 + 40}, i.e. 137.
29 will be replaced by {35 + 40}, i.e. 75.
1 will be replaced by {2 + 7 + 11 + 15 + 29 + 35 + 40}, i.e. 139.
7 will be replaced by {11 + 15 + 29 + 35 + 40}, i.e. 130.
15 will be replaced by {15 + 29 + 35 + 40}, i.e. 104.
40 will be replaced by 0 {as there is no node with a value greater than 40}.
35 will be replaced by {40}, i.e. 40.

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