Tip 1 : be clear with basics
Tip 2 : know your projects thoroughly
Tip 3 : be confident in the interviews
Tip 1 : be precise
Tip 2 : be truthful with your skills



While moving towards the lower right corner, he can only go in two directions, i.e., right and down and while returning, he can only move in the directions left and up.
If there is no valid path, he cannot collect any gold.
N = 3, mat = {{1, 1, 1}, {0, -1, 0,}, {1, 1, 1}}
In this example, the jeweler will first follow the path: (0, 0) -> (0, 1) -> (0, 2) -> (1, 2) -> (2, 2) and then return from the path (2, 2) -> (2, 1) -> (2, 0) -> (1, 0) -> (0, 0). Hence the total gold collected will be 6.



Up: (x, y) -> (x - 1, y)
Left: (x, y) -> (x, y - 1)
Down: (x, y) -> (x + 1, y)
Right: (x, y) -> (x, y + 1)
consider the binary matrix below. If source = (0, 0) and destination = (3, 4), the shortest path from source to destination has length 11.



• The left subtree of a node contains only nodes with data less than the node’s data.
• The right subtree of a node contains only nodes with data greater than the node’s data.
• Both the left and right subtrees must also be binary search trees.
Explain OOPS Concepts.
What are ACID properties?
What are joins?
What keeps you motivated?
Who is your role model?

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