Tip 1 : Focus on DSA everyday solve atleast 1-2 questions
Tip 2 : strong atleast any one programming language and don't try to start learning multiple things at a time.
Tip 1 : Make sure in resume spelling is correct and simple
Tip 2 : Add at least two projects either completed in college or in any organization.



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.
I have explaine through example and that I right the code



153 = 1^3 + 5^3 + 3^3.
Therefore 153 is an Armstrong number.
First I have define what's Armstrong number like
A number is thought of as an Armstrong number if the sum of its own digits raised to the power number of digits gives the number itself. For example, 1, 153 etc

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