Tip 1 : Focus on quality of question rather than quantity
Tip 2 : Also do some development in order to add weight o your resume
Tip 3 : Start as early as possible
Tip 1 : Add one or 2 projects
Tip 2 : Only write skills that you are sure about
it was around 4 5 PM as far as i remember, environment was not that bad as we were free to chose it, But MCQ part was a bit lengthy so i have to speed it up a little bit



Get the sum of nodes in the left subtree and right subtree. Check if the sum calculated is equal to the root’s data. Also, recursively check if the left and right subtrees are SumTrees.
Question was quite easy as it was standard and i gave them the standard approach , they accepted it



Assume that the Binary Tree contains only unique elements.
Input: 'inOrder' = [9, 3, 15, 20, 7], 'postOrder' = [9, 15, 7, 20, 3]
Output:
We get the following binary tree from Inorder and Postorder traversal:
The face-to-face technical round provided a platform for a more in-depth evaluation of my technical skills and knowledge. The interviewers delved into various aspects of data structures, algorithms, and programming concepts, seeking a thorough understanding of my capabilities.



Two nodes may have the same value associated with them.
The root node will be fixed and will be provided in the function.
You are given two containers: one with a capacity of 3 litres and the other with a capacity of 5 litres. The water supply is infinite. Your task is to use these containers to measure exactly 4 litres of water. You can fill or empty the containers, as well as pour water from one container to another. The goal is to have exactly 4 litres of water in one of the containers at the end of the process.
Please note that the containers do not have any measurement markings, so you can only rely on their capacities (3 litres and 5 litres) to measure the desired quantity of water.
Start with both containers empty.
Fill the 5-litre container to its maximum capacity.
Pour the water from the 5-litre container into the 3-litre container, which will fill the 3-litre container completely and leave 2 litres in the 5-litre container.
Empty the 3-litre container.
Pour the remaining 2 litres from the 5-litre container into the 3-litre container.
Fill the 5-litre container to its maximum capacity again.
Pour the water from the 5-litre container into the 3-litre container until the 3-litre container is full. This step will leave 4 litres of water in the 5-litre container.
Now, you have 4 litres of water in the 5-litre container, achieving the desired amount.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?