Tip 1: Consistency is key.
Tip 2: Practice different variations of a problem.
Tip 3: Practice by thinking out loud, as if you are explaining it to an interviewer.
Tip 1: Use strong action verbs.
Tip 2: Must have good projects.
It was an afternoon interview, on teams, I was asked about my projects OOPS and DSA
Basics of OOPS, how OOPS was used in my resume project, and how else I can apply it beyond what I have already done.
Tip 1: Do your project yourself.
Tip 2: Read OS basics thoroughly.
Tip 3:Be confident about the project.



If the given ‘HEIGHT’ array is [10,20,30,10], the answer 20 as the frog can jump from 1st stair to 2nd stair (|20-10| = 10 energy lost) and then a jump from 2nd stair to last stair (|10-20| = 10 energy lost). So, the total energy lost is 20.
I gave a basic solution and then optimized it for the interviewer.
Evening call on teams.
Basic questions from DBMS.
Tip 1: Thorough understanding of DBMS.
Tip 2: Joins are important.



1. The grid has 0-based indexing.
2. A rotten orange can affect the adjacent oranges 4 directionally i.e. Up, Down, Left, Right.
It started off as a puzzle and then once I had completed the puzzle I was asked a variation of the rotten oranges problem from the graph.

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?