Tip 1: Practice as many questions as you can on LeetCode, GeeksForGeeks. At least complete all the company-tagged questions on these forums.
Tip 2: Talk confidently about your prior experiences (if any). If you don't have any internship experience then do at least 2 projects and add them to your resume.
Tip 1: Use good keywords.
Tip 2: The ordering should be work experience (if any) on the top, then projects in that domain, then Skills and related coursework that you have done, and finally your achievements, and they should be highlighted to stand out.
It was early morning. There were 2 coding questions.



Can you solve each query in O(logN) ?
Step 1: Think of approach. I will perform a simple binary search on this but with some conditions.
Step 2: Think of conditions.
Conditions (These conditions will be met if the element won't be found) are:
a. if the start and end will be equal, we will return the end index if the element at that index is bigger than the target, else we will return end+1
b. if somehow end and start pointers do not get equal and cross each other, just return the start index.



For the given binary search tree and k = 3

The 3rd smallest node is highlighted in yellow colour.
Using Recursion, if we do inorder traversal then in kth iteration we’ll get our answer.
1. Introduction and questions on any part of it. (On any current/ongoing project)
2. A detailed discussion of the projects that are mentioned in the resume. In the case of a web application, the discussion can go from the flow of the web app to database design, the importance of features, and some implementation details.
3. Some DSA questions
4. Questions for me to ask.




1. Make in-place changes, that is, modify the nodes given a binary tree to get the required mirror tree.



1. The array may contain duplicate elements.
2. The array can also contain negative integers.
3. Every element of the subsequence must be greater than or equal to the previous element.



It was in the afternoon and happened in a very smooth way.
What is thread in OS?
It was late at night.
In this round, he just asked me about my family background and then he asked me some behavioral-type questions.

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?