Question: n this example below the array is meant to be sorted in descending order, correct? In other words, would the signs be flipped if it

n this example below the array is meant to be sorted in descending order, correct? In other words, would the signs be flipped if it was in ascending order?

for (int k=6 ; k >= 0; k--) temp = ar [k]; for (j = k+1; j <=6, j++) { if (ar [j] > temp) break; ar[ j-1 ] = ar[j]; } ar [j-1] = temp; } system.out.print(ar); } } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!