Tip 1 : Try to maintain consistency daily
Tip 2 : Practice all topics 10 questions each will be sufficient.
Tip 3 :Do atleast 2 to 3 projects of any topic of your choice.
Tip 1 : Keep it single page
Tip 2 : Don't write unnecessary things
The round started in early morning around 8:30 am.
It was online round on Microsoft Teams.
Interviewer was very helpful.



1. If the list is empty, the function immediately returns None because there is no middle node to find.
2. If the list has only one node, then the only node in the list is trivially the middle node, and the function returns that node.
Use the slow and fast pointer technique to find the middle element.



For the given binary tree

The reverse level order traversal will be {7,6,5,4,3,2,1}.
Use simple level order traversal but while pushing the element into queue push right element before left one.
What is deadlock?
Tip 1 : explain whatever you know
What is thread?
Tip 1 : try to explain process and thread difference.
The round was scheduled in early morning around 8:30 am.
The interviewer was very helpful.
General questions were asked in this round.
Tip 1: Just be calm and patient
Tip 2: Always speak the truth

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?