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

Computer Science & Information Technology

You might also like to view...

Fundamentally, all AJAX methods are simplified versions of the ___________ API method.

a. $.get() b. $.post() c. $.getJSON() d. $.ajax()

Computer Science & Information Technology

________ caching flushes data to disk immediately, ensuring it cannot be lost in the event of a system failure

a) Write-back b) Buffer c) Write-through d) Coherent

Computer Science & Information Technology

One of the disadvantages of using digital signals to communicate includes the inability to correct for attenuation

Indicate whether the statement is true or false

Computer Science & Information Technology

Where do IPv6 addresses other than link-local get their subnet masks?

A. IANA B. EUI-64 C. from their routers D. manually configured

Computer Science & Information Technology