Tip 1 : Do 500 good quality questions
Tip 2 : Have some decent project in your resume
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.



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.
Here i have use DFS to solve this



If K is 4 and the tree is depicted by the following image then,

The 4th largest element in the given BST is 1. So the output will be 1.
Try to do it in O(1) space without using recursion.
Given the root node of a BST, you have to return the Kth largest element in the BST.
What is Deadlock?
In concurrent computing, deadlock is any situation in which no member of some group of entities can proceed because each waits for another member, including itself, to take action, such as sending a message or, more commonly, releasing a lock
1. Explain your projects
You should know everything you have mentioned in your resume. I you are not confident about a topic, don't mention it on your resume.
Behavioural Questions
I would advise you to look up the most commonly asked behavioral questions in the interview and the STAR method to approach these types of questions.
Do not mug up answers to these questions, but instead come up with your own situations that you dealt with while doing internships/projects etc.
For questions like "Tell me about your weakness or Tell me about a time you messed up" do not say I don't have any weaknesses or I never mess up. Everyone makes mistakes, the key to this question is to not focus on the mistake/weakness but instead focus on how you overcame it and what you learnt from it.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the index number of the last element of an array with 9 elements?