Tip 1 : basics should be clear
Tip 2 : try to be confident even if you are wrong
Tip 3 : practise programming
Tip 1 : write only those points which u are sure of
Tip 2 : highlight your projects



'arr '= [1,2,3,4,5]
'k' = 1 rotated array = [2,3,4,5,1]
'k' = 2 rotated array = [3,4,5,1,2]
'k' = 3 rotated array = [4,5,1,2,3] and so on.



Bubble Sort implementation for the given array: {6,2,8,4,10} is shown below :-
Optimization techniques were asked...and determining complexity
Able to relocate, travelling is not a issue

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