package selectionSort; public class selectionSort { public static void main(String[] args) { //On my honor, I have neither received nor given any unauthorized assistance on this //examination (Assignment Selection Sort) // november 21, 2019 int[] set = makeRandomArray();//{10,8,11,4,1,9}; int maxIndex; int temp; System.out.println("SELECTION SORT\nSTARTING ARRAY:"); dispArray(set); for(int end=(set.length-1);end>0;end--) { maxIndex=0; for(int check=0; checkset[maxIndex]) maxIndex=check; } if(set[end]