Tip 1 : Practice basic coding questions initially
Tip 2 : Later, move to advance topics
Tip 3 : Interview is easy part, qualifying for interviews is tough job
Tip 1 : Add skills which you are confident about
Tip 2 : Need not to put more than 2 projects in resume.
What is computer networks?
Some logical puzzles
Tip 1:Learn basics of Computer Networks
Tip 2:Learn Logical reasoning, English, quants, Maths
Tip 3:Also have theoretical of programing languages



In the below graph, there exists a cycle between vertex 1, 2 and 3.

1. There are no parallel edges between two vertices.
2. There are no self-loops(an edge connecting the vertex to itself) in the graph.
3. The graph can be disconnected.
Input: N = 3 , Edges = [[1, 2], [2, 3], [1, 3]].
Output: Yes
Explanation : There are a total of 3 vertices in the graph. There is an edge between vertex 1 and 2, vertex 2 and 3 and vertex 1 and 3. So, there exists a cycle in the graph.
Basic questions, mainly theoretical knowledge about C, C++, Java, Python, DBMS was asked.
What is difference between Database and DBMS?\
What are joins?
Tip 1:Have knowledge about DBMS
Tip 2:Have theoretical knowledge about all major programming language according to your resume
Tip 3:Be prepared about some HR questions as both technical as well as HR rounds were conducted in one round.

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?