The following is the pseudocode for which type of algorithm?
```
For start = each array subscript, from the first to the next-to-last
minIndex = start
minValue = array[start]
For index = start + 1 To size - 1
If array[index] < minValue
minValue = array[index]
minIndex = index
End If
End For
swap array[minIndex] with array[start]
End For
```
a. bubble sort
b. binary sort
c. bubble search
d. selection sort
e. None of these
d. selection sort
You might also like to view...
Users who create apps and want to make money from them can use the Facebook ________ program, a method of payment on Facebook
Fill in the blank(s) with correct word
After a tag is created, it is easily added to other files without having to type the entire tag name
Indicate whether the statement is true or false