Tip 1 : Practice consistently
Tip 2 : Solve variety of problems
Tip 3 : Focus on your communication skills
Tip 1 : Do not lie on your resume
Tip 2 : Have decent projects for discussion



1) A prime number is a number that has only two factors: 1 and the number itself.
2) 1 is not a prime number.



An Euler path is a path in a graph such that every edge must be visited exactly once. You can visit the same vertex multiple times.
English, Logical Reasoing, Maths
Required 45+ out of 50



In the case of two closest sums, print the smallest sum.



Input:
4 5
0 1 5
0 2 8
1 2 9
1 3 2
2 3 6

In the given input, the number of vertices is 4, and the number of edges is 5.
In the input, following the number of vertices and edges, three numbers are given. The first number denotes node ‘X’, the second number denotes node ‘Y’ and the third number denotes the distance between node ‘X’ and ‘Y’.
As per the input, there is an edge between node 0 and node 1 and the distance between them is 5.
The vertices 0 and 2 have an edge between them and the distance between them is 8.
The vertices 1 and 2 have an edge between them and the distance between them is 9.
The vertices 1 and 3 have an edge between them and the distance between them is 2.
The vertices 2 and 3 have an edge between them and the distance between them is 6.
1. There are no self-loops(an edge connecting the vertex to itself) in the given graph.
2. There can be parallel edges i.e. two vertices can be directly connected by more than 1 edge.
Was given an open-ended problem, and had to provide a solution for it. The problem was about shifting some parcels to a warehouse without human intervention. Focus was a lot on clear communication.
It was an online MCQ with 50 Questions on DBMS, OOPS, Output and aptitude questions.
cutoff of 45 out of 50

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