Tip 1 : Prepare DS and algo well(i prepared from GFG)
Tip 2 : Must know basics of DBMS and OS
Tip 3 : Be confident and genuine
Tip 1 : Prepare resume iteratively
Tip 2 : show ur resume to seniors and ask for suggestions
First round was coding round, where i was asked 2 DS algo questions, 1 was easy and other was of medium difficulty



1. Coordinates of the cells are given in 0-based indexing.
2. You can move in 4 directions (Up, Down, Left, Right) from a cell.
3. The length of the path is the number of 1s lying in the path.
4. The source cell is always filled with 1.
1 0 1
1 1 1
1 1 1
For the given binary matrix and source cell(0,0) and destination cell(0,2). Few valid paths consisting of only 1s are
X 0 X X 0 X
X X X X 1 X
1 1 1 X X X
The length of the shortest path is 5.
First i explained the approach. when he was satisfied with the approach, I was asked to code it.
I was asked to design url shortner
I was asked to design url shortner
Tip 1 : First clearly ask the requirements of the problem.
Tip 2 : Start with simple design and then narrow the constraints
Tip 3 : Explain the reasons begin ur choices of data structures/ DB
This was hiring manager round
One coding problem, discussion about past projects and other behavioural questions
Tip 1 : Prepare well about ur past projects, bcoz they will be asking it for sure
Tip 2 : Be confident and humble
Tip 3 : Be Genuine

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the output of print(type("Python"))?