Tip 1 : Read about job description & Company information
Tip 2 : Practice by HackerRank coding question
Tip 3 : Make projects
Tip 1 : Add Keywords from the Job Posting
Tip 2 : Do not put false things on resume.
- Morning time
- Environment was good.
- No
- Interviewer was not soo good



Bubble Sort implementation for the given array: {6,2,8,4,10} is shown below :-



1) A subarray is a part of the array which is contiguous (i.e. elements in the original array occupy consecutive positions) and inherently maintains the order of elements. For example, the subarrays of the array {1, 2, 3} are {1}, {1, 2}, {1, 2, 3}, {2}, {2, 3}, and {3}.
2) Bitwise OR operation takes two numbers and performs OR operation on every bit of those two numbers. For example, consider two numbers 2 and 3 their bitwise OR will be 3. Because the binary representation of 2 is 10 and the binary representation of 3 is 11. And OR of 10 and 11 will be 11 which evaluates to 3.
3) The array may contain duplicate elements.



If two or more such subarrays exist, return any subarray.

Matrix = [ [1,0,1], [0,0,1 ], [1,0,1 ]]
Result = [ [1,0,1], [0,0,1] ].
The row [1,0,1] is before [0,0,1] as it appears before in matrix.



0 x y
1 x y
2 x y
- Morning time - Environment was good. - No - Interviewer was good
How would your current manager describe you?
What would you change about your current job description?
How do you stay organized in your current position?
Tell about a time when you made a mistake. What did you do to fix it?
Tip 1 : Practice is must
Tip 2 : Speaking skills should be good

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?