Tip 1 : Be confident at one Language
Tip 2 : Should be strong technical concepts
Tip 1 : It should be of one page
Tip 2 : Don't put fake things
This round is purely technical , Interviewer asked me questions regarding my core technical subjects.



1. If 'X' is not found in the array, return 0.
2. The given array is sorted in non-decreasing order.
Tip 1 : Apply linear approach for this problem
Tip 2 : Do more array problems to result a grip on these problems



Bubble Sort implementation for the given array: {6,2,8,4,10} is shown below :-
Tip 1 : Divide by finding the number of the position midway between and . Do this step the same way we found the midpoint in binary search: add and , divide by 2, and round down.
Tip 2 : Conquer by recursively sorting the subarrays in each of the two subproblems created by the divide step. That is, recursively sort the subarray array[p..q] and recursively sort the subarray array[q+1..r].
Tip 3 : Combine by merging the two sorted subarrays back into the single sorted subarray array[p..r].
Introduce yourself.
Why should we hire you?

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?