Tip 1 : Focus on basics
Tip 2 : Double down on recursion
Tip 1 : Resume should be balanced with development works
Tip 2 : Mention the things in which you are very confident



Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.
First i solved this using brute force , then I optimised the solution



Can you solve each query in O(logN) ?
I used recursive as well as n iterative approach to solve this problem. Solved it in two different ways
Explain OOPs concepts.
What is overriding and overloading?
Normal HR round with standard questions
Tell me about yourself.
What are your strengths and weaknesses?
What are your hobbies?

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