answers verified to pass 2025
This type of algorithm rearranges the values stored in an array in some
particular order.
a. search algorithm
b. sorting algorithm
c. ordering algorithm
d. selection algorithm - correct answer sorting algorithm
If an array is sorted in this order, the values are stored from lowest to highest.
a. asymptotic
b. logarithmic
c. ascending
d. descending - correct answer ascending
If an array is sorted in this order, the values are stored from highest to lowest.
a. asymptotic
b. logarithmic
c. ascending
d. descending - correct answer descending
This algorithm makes several passes through an array and causes the larger
values to
gradually move toward the end of the array with each pass.