Tip 1 : try to prepare according to the company interview pattern
Tip 2 : focus more on DSA part
Tip 3 : keep your self calm during the interview
Tip 1 : keep it short and crips
Tip 2 : mention everything in brief
It was mainly coding round






If two nodes have the same position, then the value of the node that is added first will be the value that is on the left side.
For the binary tree in the image below.

The vertical order traversal will be {2, 7, 5, 2, 6, 5, 11, 4, 9}.



The diameter of a binary tree is the length of the longest path between any two end nodes in a tree.
The number of edges between two nodes represents the length of the path between them.
Input: Consider the given binary tree:

Output: 6
Explanation:
Nodes in the diameter are highlighted. The length of the diameter, i.e., the path length, is 6.
You can google it
REST APIs
Scaling of web application

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