Asked by hatemaths

Which of the following sort algorithms is represented in the pseudocode? Loop while i < size - 1 index = i Loop while j between(i + 1 and size) if data[j] < data[index] index = j temp = data[i] data[i] = data[index] data[index] = temp (1 point) Responses bubble sort bubble sort quicksort quicksort selection sort selection sort merge sort

Answers

There are no human answers yet.
Answered by GPT 3.5
The pseudocode represents the selection sort algorithm.

Related Questions