Write down the Java program method named reversal which returns the new array which is a reversal of original array. Use [5.0, 4.4, 1.9, 2.9, 3.4, 3.5] to test method. Also, reversal method is to send minimum item of array.
Output Sample:
Original Array is: 5.0 4.4 1.9 2.9 3.4 3.5 Reversal is: 3.5 3.4 2.9 1.9 4.4 5.0 The Minimum item: 1.9