Tip 1 : Good knowledge of one programming language like C++, Python etc. and Basic Data Structure & Algorithms as well as OOPS concepts
Tip 2 : At least one Good project
Tip 3 : Solve At least 200-250 questions of basic & medium level questions on any coding platform
Tip 1 : Have projects
Tip 2 : It's better to have skillset defined that plays an important role in interviews






Down: (row+1,col)
Right: (row, col+1)
Down right diagonal: (row+1, col+1)



class graphNode
{
public:
int data;
vector<graphNode*> neighbours;
}
1. Nodes are numbered from 1 to N.
2. Your solution will run on multiple test cases. If you are using global variables make sure to clear them.



Introduce yourself
What do you think is special about you?
Why are you different?
Explain your project.
Any comment on your college?

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?