Tip 1 : Have good understanding of whatever is mentioned in your resume
Tip 2 : Have thorough knowledge in few subjects instead of superficial knowledge of many
Tip 3 : DSA questions in the test were of good level. Practise as much DSA as possible
Tip 1 : Only keep those topics and projects in which you have good confidence
Tip 2 : Keep it simple and to the point



1. There are no self-loops(an edge connecting the vertex to itself) in the given graph.
2. There are no parallel edges i.e no two vertices are directly connected by more than 1 edge.
Input:
4 5
0 1 5
0 2 8
1 2 9
1 3 2
2 3 6

The source node is node 0.
The shortest distance from node 0 to node 0 is 0.
The shortest distance from node 0 to node 1 is 5. In the above figure, the green path represents this distance. The path goes from node 0->1, giving distance = 5.
The shortest distance from node 0 to node 2 is 8. In the above figure, the pink path represents this distance. The path goes from node 0->2, giving distance = 8.
The shortest distance from node 0 to node 3 is 7. In the above figure, the yellow path represents this distance. The path goes from node 0->1->3, giving distance = 7.



4 4 4 4 4 4 4
4 3 3 3 3 3 4
4 3 2 2 2 3 4
4 3 2 1 2 3 4
4 3 2 2 2 3 4
4 3 3 3 3 3 4
4 4 4 4 4 4 4



There must be no consecutive horizontal lines of equal height in the output skyline. For instance, [...,[2 3], [4 5], [7 5], [11 5], [12 7],...] is not acceptable; the three lines of height 5 should be merged into one in the final output.
As such: [..., [2 3], [4 5], [12 7],...].
Also, the buildings are sorted by a non-decreasing order.
For more clarification see sample case 1.
It was a managerial round. All the topics/ projects in my resume were questioned extensively. A range of topics were asked include os, dsa dbms, compiler design ,android, neural networks along with some HR style questions.

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