Tip 1: Craft a well-structured résumé that effectively highlights your skills and experiences.
Tip 2: Ensure you have a strong grasp of Data Structures and Algorithms, and thoroughly prepare on topics like Operating Systems (OS) and Database Management Systems (DBMS).
Tip 1: Keep It Concise: Limit your resume to one page, focusing on your most relevant experiences and skills.
Tip 2: Be Honest: Never include false information on your resume
The interview was scheduled for the late afternoon, which was convenient for me. The interviewer was friendly and approachable, encouraging me to explain my thought process and asking follow-up questions to understand my reasoning better.



Suppose given input is "abacb", then the length of the longest substring without repeating characters will be 3 ("acb").
Step 1: First, I tried to solve the problem using the sliding window technique. Eventually, it worked fine, and the interviewer agreed.
Multiple theory questions were asked. I was able to answer most of them, and for some, I provided partial answers.



• The left subtree of a node contains only nodes with data less than the node’s data.
• The right subtree of a node contains only nodes with data greater than the node’s data.
• Both the left and right subtrees must also be binary search trees.

Level 1:
All the nodes in the left subtree of 4 (2, 1, 3) are smaller
than 4, all the nodes in the right subtree of the 4 (5) are
larger than 4.
Level 2 :
For node 2:
All the nodes in the left subtree of 2 (1) are smaller than
2, all the nodes in the right subtree of the 2 (3) are larger than 2.
For node 5:
The left and right subtrees for node 5 are empty.
Level 3:
For node 1:
The left and right subtrees for node 1 are empty.
For node 3:
The left and right subtrees for node 3 are empty.
Because all the nodes follow the property of a binary search tree, the above tree is a binary search tree.
First, I tried to solve it using an in-order traversal, which should produce a sorted array. Then, the interviewer asked me to solve it without using extra space, so I maintained a valid range (min and max) for each node.
Tip 1: Answer only what has been asked, do not talk too much or too little.
Tip 2: Don't try to guess the answers.

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