In a bubble sort, what order are the elements in an array placed using the following call to a swap module?
// the array is named scores
// d is the index value of an array element
If scores[d] < scores[d + 1] Then
Call swap(scores[d], scores[d + 1])
a. ascending
b. descending
c. alphabetic
d. numeric
b. descending
Computer Science & Information Technology