Tip 1 : Must do Previously asked Interviews as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at least 2 good projects and you must know every bit of them.
Tip 1 : Be very specific. Write out important stuff only if you applying for a tech job. No one's going to see your dance/acting skills while interviewing you.
Tip 2 : If you have mentioned your projects, make sure you add your source code's link/GitHub repo link as a hyperlink to it. That's very important, it helps the interviewer know that you have done this project and you're not faking it.
Online coding round with 2 coding questions



For the given binary tree

The level order traversal will be {1,2,3,4,5,6,7}.




It was an onsite face to face technical round where I was asked 2 coding questions.
It lasted for 40-50 minutes.






1. The grid has 0-based indexing.
2. A rotten orange can affect the adjacent oranges 4 directionally i.e. Up, Down, Left, Right.
This round had 2 coding questions and I was expected to give the optimal approach for both the questions with proper time and space complexities



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?




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?