Tip 1 : Proper coding practice
Tip 2 : Solve other interview
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.



Bubble Sort implementation for the given array: {6,2,8,4,10} is shown below :-
Step 1 : First applied bubble sort. It was not good enough.
Step 2 : Interviewer asked me to optimise the solution.



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.
1) Basic ICM codes
2) What is time constraint?
Tip 1 : Started with basics lcm code

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?