Question: Write a Java program that inputs size of array N and N numbers in the array. It should use Selection sort to sort the array

Write a Java program that inputs size of array N and N numbers in the array. It should use Selection sort to sort the array and then display it. Then, ask a number X to search in the array. It should use Linear search and then print the result of search. (Hint-Lab 03]) Worneng: Cheating in homework will result in zero marks: in f same programin will got oy] Sample Output: Searching and Sorting Algorithms Enter size of array? 5 Enter 5 numbers 5.5 82 24 9.1 3.3 Enter size of array ? 5 Enter 5 numbers : 5.58.22.49.13.3 Sorted array: 2.4,3.3,5.5,8.2,9.1 Enter a number to search? 8.2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
