Tip 1 : Try to have a good grasp on data structures and algorithms
Tip 2 : It's good if you have knowledge of cloud
Tip 3 : know everything which is in your CV . Not knowing what you worked upon is disappointing
Tip 1 : Have some projects relevant ti product development in your CV
Tip 2 : Never lie on your CV
The coding round has two questions which can be done in any of the coding language . One of which was a basic regix question and other one wad dynamic programming question


Both Ninja’s starting cell and the destination cell exist on an empty space, and they will not be at the same position initially.
The given maze does not contain borders (like the red rectangle in the sample pictures), but you could assume the borders of the maze are all walls.
N = 3, M = 3
Maze = [ [ 0, 0, 0 ], [ 0, 1, 0 ], [ 1, 0, 0] ]
Start = [ 0, 0 ]
Destination = [ 2, 1 ]
Explanation :
Ninja can start from (0,0) and take the right direction and run till (0,2). Then he turns direction to down and runs till (2,2). Then Ninja turns direction to the left and runs till (2,1).
Wrote recursion and converted it to dp



Let’s say you have “abcd” as string ‘ST’ and 2 words “bd” and “db”. “bd” matches with the string ‘ST’ as you can remove ‘a’ and ‘c’ character to form “bd”. “db” does not match with the string ‘ST’ because it is impossible to form “db” from the string ‘ST’ by removing characters.
You cannot change the order of characters in ‘ST’ after removing some characters.
15-30 minutes




It was in second half of the day . The interviewer was very calm and gave me quite time to think about solution
Gave a problem and needed to be solved using sql keys
Tip 1 : Have good knowledge of SQL advanced
This was one of the face to face interview that wad conducted in campus in afternoon
This question was related to one of the product development project that i did and wrote in my cv
This was a basic hr round conducted in campus and in evening
Tell me about yourself.
Why should we hire you?
Your strengths and weaknesses.

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?