Suppose that list is sorted using the selection sort algorithm as discussed in the book. What is the resulting list after two pa
sses of the sorting phase; that is, after two iterations of the outer for loop?
a. list = {10, 18, 24, 20, 75, 70, 60, 35}
b. list = {10, 18, 20, 24, 75, 70, 60, 35}
c. list = {10, 18, 24, 75, 70, 20, 60, 35}
d. list = {10, 20, 24, 75, 70, 20, 60, 35}