Tip 1 : If you are fresher focus on core subjects as well.
Tip 2 : You should be aware of OOPS concepts.
Tip 3 : Practice DSA as much as possible.
Tip 1 : Prepare well what you write in your resume
Tip 2 : Make a decent project.
This was the first round. There were 3 sections (Aptitude + verbal + coding test). The overall round was medium.



'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.


‘N’ = 5, ‘ARR’ = {3, 1, 2, 4, 5}.
Now in this example, There are three indexes 3, 4, 5(indexing starting from 1):
Sorted subarray(1, 3): 1, 2, 3.
Sorted subarray(1, 4): 1, 2, 3, 4.
Sorted subarray(1, 5): 1, 2, 3, 5.
Hence the answer is 3.
There were three interviewers on the panel, one for technical, one for HR, and one for MR.



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.
Explain Final, Finally, and Finalize in Java (Learn)
How can we initialize the global variable in java? (Learn)
We can use static keyword
1. What are your strengths and weaknesses?
2. Will you be able to relocate?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: