Tip 1 : Practice DSA Daily
Tip 2 : Update Your profiles Regularly with Good Projects
Tip 3 : Do any real World Projects
Tip 1 : Keep your Resume Updated
Tip 2 : For Fresher's Follow One Page Resume Page length
First 2 are Coding and 3rd one is SQL.

Solved this Problem Using Dynamic Programming



For the above BST:
‘NODE1’ = 6, ‘NODE2’ = 14
Distance between 6 and 14 = (Number of nodes in the path from 6 to 14) + 1.
So the path from 6 to 14 is : ( 6 -> 3 -> 8 -> 10 -> 14).
Distance between 6 and 14 = 3 ( i.e. 3, 8, 10 are in path) + 1 = 4.
Solved this Using Graph BFS Approach
Tip 1 : Go through the concepts of DBMS
Tip 2 : Read from the internet to enhance your knowledge
The Interviewer was Friendly, Asked my Introduction and then Gave 2 Problem statements one on Graph and other is on Binary tree



Can be Solve using Union find or DFS




In the above binary tree, only node { 4, 5, 6 } is visible from the bottom right only node ‘1’ and node ‘3’ are hidden behind node ‘6’.
node ‘2’ is hidden behind node ‘5’.
Solved this Using DFS
The Interviewer was Friendly, Asked my Introduction and then Gave 2 Problem statements one on DP and other is on Binary tree


The input string may contain the same characters, so there will also be the same permutations.
The order of permutations doesn’t matter.
Used DP to Solve this



Serialization is the process of translating a data structure or object state into a format that can be stored or transmitted (for example, across a computer network) and reconstructed later. The opposite operation, that is, extracting a data structure from stored information, is deserialization.
Solved using the DFS
Manager Took this Round and He was Very Friendly. He asked some really basic Questions
Tip 1 : If they asked for technology preference then tell your preference. If they asked to work on any technology say yes because after selection you mostly got your preferred technology and if anyone not get they also chance to work on preferred tech according to project req.
Tip 2 : Always put good points about company (eg. Flexibility, Environment, Learning, Growth etc)

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?