Tip 1 : Don't jump into solutions directly
Tip 2 : Practice more Cram less
Tip 3 : Dont leave DBMS and OS
Tip 1 : Don't write too much
Tip 2 : Use more technical terms
It contained 3 coding questions only



Subsequences of string "abc" are: ""(empty string), a, b, c, ab, bc, ac, abc.
I applied dynamic programming to solve this problem



The traversal should proceed from left to right according to the input adjacency list.
Adjacency list: { {1,2,3},{4}, {5}, {},{},{}}
The interpretation of this adjacency list is as follows:
Vertex 0 has directed edges towards vertices 1, 2, and 3.
Vertex 1 has a directed edge towards vertex 4.
Vertex 2 has a directed edge towards vertex 5.
Vertices 3, 4, and 5 have no outgoing edges.
We can also see this in the diagram below.
BFS traversal: 0 1 2 3 4 5

It was an implementation of BFS approach from medium level questions
It was and coding interview round



If the input tree is as depicted in the picture:
The Left View of the tree will be: 2 35 2
It was simple problem , applied bfs and solved
Tip 1 : Just don't forget to study DBMS and SQL
Tip 2 : Gain access to good content
Interviewer was good
Why do you want to join this company?
What are your major achievements during academics?
Explain your project?
Tip 1 : Practice Some generally asked HR questions to pass this round
Tip 2 : Be confident
Tip 3 : Be honest

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: