Tip 1 : Thorough with Java Language
Tip 2 : Thorough with API development
Tip 1 : ATS - based resume
Tip 2 : Revise projects written in the resume.



Consider the array {2,1,5,6,3,8} and 'K' = 3, the sorted array will be {8, 6, 5, 3, 2, 1}, and the 3rd largest element will be 5.
1) Kth largest element in an array is the kth element of the array when sorted in non-increasing order.
2) All the elements of the array are pairwise distinct.
I applied sorting and then picked the kth largest element.
It is the puzzle of determining how to store 4L of water from given buckets of 2L and 5L of water.
Tip 1 : Be prepared with general logical problems.
Tip 2 : Solve 5 problems before the interview, to be logically prepared.
They asked me why I think I should be selected.
What are your expectations?
Tip 1 : Be prepared with general HR questions.
Tip 2 : Revise whys of each decision you have already made.

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