Tip 1 : Practice two questions atleast per day. (Starting from Arrays)
Tip 2 : Focus on code optimisation once you are done with brute force
Tip 3 : Always be honest with interviewer. He is much more smarter than you.
Tip 1 : Only mention those topics in resume in which you are more confident. Don't put extra things to fill your CV.
Tip 2 : Mention atleast one project in your resume. Interviewer will test your skill on the basis of mentioned projects.
Coding Round: The coding consisted of 3 coding questions and the time allotted is 3 hour.



1. You can only increment the value of the nodes, in other words, the modified value must be at least equal to the original value of that node.
2. You can not change the structure of the original binary tree.
3. A binary tree is a tree in which each node has at most two children.
4. You can assume the value can be 0 for a NULL node and there can also be an empty tree.
Applied proper ds and able to pass all 10/10 test cases.



You are given the following tree.

And you are given 3 queries as follows
Q1 = [ 2 , 12 ]
Q2 = [ 10 , 50 ]
Q3 = [ 14 , 20 ]
Then the answers for them will be as follows.
Answer for Q1 = 3 i.e. nodes 5, 10 , 12.
Answer for Q2 = 6 i.e. nodes 10 , 12 , 15 , 19 , 20 , 28.
Answer for Q3 = 3 i.e. nodes 15 , 19 , 20.
It is guaranteed that the tree given will be a binary search tree.
It is guaranteed that all the node values will be distinct.
Interview Round: The interview was conducted on MS Teams. It had only one round of 45 mins. Interview began with my introduction. Then the interviewer started asking questions.



For given 2D array :
[ [ 1, 2, 3 ],
[ 4, 5, 6 ],
[ 7, 8, 9 ] ]
After 90 degree rotation in anti clockwise direction, it will become:
[ [ 3, 6, 9 ],
[ 2, 5, 8 ],
[ 1, 4, 7 ] ]
I applied sorting and related dsa to solve these problems.
Que 1: What is class and object? Why the concept of class needed?
Que 2: Properties of OOPs
Articulate manipulator – Robotic project
Captcha solver – Deep Learning project
Blog website – Web development project
It was generally very easy round. Here HR asked about real life problems . Our strengths, weaknesses etc
1. Strengths/ Weaknesses
2. Your vision after 5 years
Tip 1 : Be calm.
Tip 2 : Don't be in hastle
Tip 3 : Keep a soft smile on your face

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?