Tip 1: Mention some good projects on your resume. Highlighting relevant projects on your resume can demonstrate your practical skills and the real-world application of your knowledge. These projects should showcase your ability to solve problems, work on meaningful tasks, and collaborate effectively.
Tip 2: Be confident. Confidence is key when presenting yourself on your resume, during interviews, and in your overall professional demeanor. However, remember that confidence should be grounded in your actual skills and experiences.
Tip 1: Highlight good projects showcasing your projects is a powerful way to demonstrate your practical skills and problem-solving abilities. These projects should reveal your capability to apply theoretical knowledge to real-world scenarios.
Tip 2: Showcase Achievements Highlighting your achievements can set you apart from other candidates and demonstrate your impact in various roles.
Two coding questions were asked of medium complexity. Timing and date of the interview was according to your comfort, interviewer was very helpful.



Can you solve each query in O(logN) ?
1. My first approach was to decide which side of the list is sorted.
2. after finding out sorted side, I applied if condition to check correct side of the element.
3. then Applied binary search in the resulted array.



If two nodes have the same position, then the value of the node that is added first will be the value that is on the left side.
For the binary tree in the image below.

The vertical order traversal will be {2, 7, 5, 2, 6, 5, 11, 4, 9}.
Given a binary tree, return the vertical order traversal of the values of the nodes of the given tree.
For each node at position (X, Y), (X-1, Y-1) will be its left child position while (X+1, Y-1) will be the right child position.
Running a vertical line from X = -infinity to X = +infinity, now whenever this vertical line touches some nodes, we need to add those values of the nodes in order starting from top to bottom with the decreasing ‘Y’ coordinates.
2 questions from DSA were asked.






If the given string is 56789, then the next greater number is 56798. Note that although 56790 is also greater than the given number it contains 1 '0' which is not in the original number and also it does not contain the digit '8'.
The given string is non-empty.
If the answer does not exist, then return -1.
The given number does not contain any leading zeros.
Use stack and check for the condition while(!st.empty()&&st.top()<= arr[i]){ st.pop()}.
Tell me about yourself.
What do you know about us?
Are you ready to relocate?
Tell the truth.

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