Tip 1 : Do atleast one Coding on leet code
Tip 2 : Take top 500 questions of geeks for geeks and practice them topic by topic
Tip 3 : Go through the reviews and past interview experience of companies you are about to give interview for
Tip 1 : Keep it clear
Tip 2 : mention only things you are confident about
2 coding questions and One sql question


If the binary search trees look like the ones below:
.png)
The only common values are 6 and 7, therefore we return the list [6, 7].
Take the string and keep in hashset and check the next string using contains method which will take only O(1) time
Questions about projects and two Coding question



[2,3,4] - median is 3.
[2,3] - median is floor((2+3)/2) = 2.
This is well known problem, Need to find out the median by splitting it into two groups.



Do not print anything, just return the number of set bits in the binary representation of all integers between 1 and ‘N’.
Take the integer one by one and count the number of bits and observe the pattern and came out with a mathematical formula.
Regarding previous experience
Design Rate limiter
Tip 1 : Give basic naive solution, and develop it
Tip 2 : Use Microservice architecture
Tip 3 : Get the clarity of the requirements
It was Hiring manager round
Given two tables, need to normalise the tables so that data duplication is not done
Tip 1 : Understand the problem properly.
Tip 2 : Whatever you have in your mind please say the same , and take the feedback.

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