Tip 1 : Stay Dedicated.
Tip 2 : Daily practice coding questions
Tip 3 : Explore open source projects.
Tip 1 : Mention the best project or interview experience
Tip 2 : ATS Friendly resume.
The difference between simple interest and C.I. at the same rate for Rs.5000 for 2 years in Rs.72. The rate of interest is?
What is the first step in the software development lifecycle?
What is the major drawback of the Spiral Model?



1. The given graph may have self-loops and parallel edges.
Consider ‘N’ = 4, ‘EDGES’ = [[0, 1], [0, 3], [1, 2], [3, 2]], ‘SRC’ = 0 and ‘DEST’ = 2. The given directed graph is shown below.

Here, all the paths that start from node 0 are -:
1. 0->1->2
2. 0->3->2
Both of these paths eventually end at node ‘2’ i.e node ‘DEST’. Thus we should return True.
Make a 2d matrix (say visited[][]) for tracing the cells that have already been visited.
Call the recursive function that will check and return the answer.
Take four variables namely up, down, left, and right representing the four directions in which one can move.
Based on the current cell value make the respective variable true and then call the recursive function in the respective direction if there exists a path.
Introduce yourself.
Why did you decide to apply to this role?
What did you like most about the job description?
What do you know about our company’s product/services?

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