Tip 1 : Never leave any topic from any chapter / Subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.
Tip 4 : Atleast 4 projects in Resume
Tip 1 : At least 4 projects on the resume
Tip 2 : Do not write false things. You always get caught. Be genuine.
The interviewer asked questions on projects, tech stack i have worked on, 2 coding questions.






nodes, where the nodes have integer values.
For the given binary tree:

The Inorder traversal will be [5, 3, 2, 1, 7, 4, 6].
The Preorder traversal will be [1, 3, 5, 2, 4, 7, 6].
The Postorder traversal will be [5, 2, 3, 7, 6, 4, 1].
This round was an Hiring Manager round. He was very interested on my work in the previous company. He asked the whole architecture of the project i have worked on. After that He finished the round by asking 1 DSA question.



'ARR' = [3, 4, -1, 1, 5] and 'K' = 3
Output = [4, 4, 5]
Since the maximum element of the first subarray of length three ([3, 4, -1]) is 4, the maximum element of the second subarray of length three ([4, -1, 1]) is also 4 and the maximum element of the last subarray of length three ([-1, 1, 5]) is 5, so you need to return [4, 4, 5].

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