Tip 1 : Try leetcode medium questions of every topic (100 questions each topic)
Tip 2 : Try to explain the approach before writing the code and be sure about the time and space complexity’s
Tip 3 : Do not confuse with the projects you have mentioned be prepared for the questions related to technology stack and motivation behind the project.
Tip 1 : One page resume, with project explained properly
Tip 2 : Include your coding profiles as a link* and it is not necessary to write 10th and 12th percentage or school
40 MCQ and 2 Coding with 1:30 hours time. C++ and web based questions (HTML, CSS , JS)
it was 5:00 PM, Interviewer was very friendly and was a senior person. He asked some medium level SQL Queries. Also asked what are the various DML, DDL commands.



The input for the tree depicted in the below image would be :

1
2 3
4 -1 5 6
-1 7 -1 -1 -1 -1
-1 -1
Level 1 :
The root node of the tree is 1
Level 2 :
Left child of 1 = 2
Right child of 1 = 3
Level 3 :
Left child of 2 = 4
Right child of 2 = null (-1)
Left child of 3 = 5
Right child of 3 = 6
Level 4 :
Left child of 4 = null (-1)
Right child of 4 = 7
Left child of 5 = null (-1)
Right child of 5 = null (-1)
Left child of 6 = null (-1)
Right child of 6 = null (-1)
Level 5 :
Left child of 7 = null (-1)
Right child of 7 = null (-1)
The first not-null node (of the previous level) is treated as the parent of the first two nodes of the current level. The second not-null node (of the previous level) is treated as the parent node for the next two nodes of the current level and so on.
The input ends when all nodes at the last level are null (-1).
The above format was just to provide clarity on how the input is formed for a given tree.
In the input, each value of the sequence will be present on a separate line.
60 mins approx and it was morning 9 am, it was taken by manager he asked 4-5 ds algo questions that were not medium but easy i would say if you are able to solve. What are the tech stack you have used?
What are the advantages of using react?. What is the virtual DOM? How does react use the virtual DOM to render the UI?

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