URGENT IN ONE HOUR IN JAVA ONLY
Now, complete the provided “main” method by calling the previousmethod (“SortArray”).
Display the contents of your array before and after the methodcall. A simple example of the output is provided below:
Arrays Values before Sorting:
Value at: [0] is: 11
Value at: [1] is: 4
Value at: [2] is: 44
Value at: [3] is: 14
Value at: [4] is: 5
Sorted Arrays Values:
Value at: [0] is: 4
Value at: [1] is: 5
Value at: [2] is: 11
Value at: [3] is: 14
Value at: [4] is: 44
Answer
public class Main { //Bubble sort function public static void SortArray(int[] array) {
OR
OR