Tip 1 : Clear the concept
Tip 2 : Questions are always easy there is only little bit modification
Tip 3 : Always revise the old concept, should write important concept in notebook
Tip 4 : Try to cover important topics not whole syllabus
Tip 5 : Always do questions in strict time limit.
Tip 1 : 1 page resume
Tip 2 : 2-3 projects maximum 4 not more than 4
Tip 3 : Mention your coding profile
Aptitude+Coding
Both the rounds were easy only student should have confidence in himself.
Coding Round 3 question-:
1.Array related
2.Level order traversal
3. Graph
A binary tree is a tree in which each node has at most 2 children.
For Example, the root node is given as follows :
‘ROOT’ = 1 2 3 4 -1 -1 5 -1 -1 -1 -1 and ‘K’ = 2, Then the sum of all nodes at K-level will be 5. This is because 2 and 3 are present at level 2 and 2 + 3 = 5. Therefore 5 is the answer.
#### An undirected graph is a graph in which if you can go from a vertex, say, ‘A’ to ‘B,’ you can come back to ‘A’ from ‘B.’
In this graph, we can visit from vertex 1 to 2, then we can also visit from vertex 2 to 1. This is true for all vertices.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you write a single-line comment in C++?