Tip 1: Read the question carefully because that's where I missed it.
Tip 2: Learn about Joins, as they were asked in my interview.
Tip 3: Learn a bit about Python as well.
Tip 1: Mention SQL.
Tip 2: Highlight your coding profiles.
The interviewer was chill. He asked about my introduction, experiences, and projects, and I was able to explain everything properly. Then, he gave me a difficult tree problem, but I misunderstood it and wrote code for something else, which caused a problem in the last 10 minutes.



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 misunderstood this as a different problem and solved it that way, but in the last 10 minutes, I realized the actual problem when the test cases failed and then solved it.
One coding question, one SQL query, and ten MCQs were there.

Serialization is the process of converting an object into a stream of bytes.
Deserialization is the opposite process of creating an object from a stream of bytes.
You can apply your own serialization and deserialization algorithms.
I understood the problem, wrote the code on paper, then tried it on my laptop, solved all the edge cases, and it passed in one go.

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