Tip 1 : Be relaxed and think before you answer
Tip 2 : Always think out loud so that the interviewer may know your approach to the sution
Tip 3 : Practice Coding Questions
Tip 1 : Have some Good projects
Tip 2 : Participate in Coding competitions
What are Normal Forms


Input: ‘n’ = 7, ‘prices’ = [100, 80, 60, 70, 60, 75, 85]
Output: [1, 1, 1, 2, 1, 4, 6]
Explanation:
On the sixth day, when the stock price was 75,
The span came out to be 4 because the last three prices(plus today) were less than the current or the sixth day's price.
Similarly, we can deduce the remaining results.
You don’t need to print anything. Just implement the given function
I used two Priority queues to create two queue to store the Buy price and sell price, one min Pq and one max PQ.
What is jvm?
What are benefits of java?
How was the experience of interview
Things you liked
Things you're looking forward to

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