The following is the pseudocode for which type of algorithm?…

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 For index = start + 1 To size – 1 If array < minValue minValue = array minIndex = index End If End For swap array with array End For