Answer:
The statement which is correct:
c. The algorithm might be insertion sort, but could not be selection sort.
Explanation:
Selection sort:
In data structure, such a sorting technique in which the smallest element from the unsorted array is swapped with the left-most element. So, the first digit is always the smallest.
Insertion Sort:
In data structure, such a sorting technique in which each element is compared with all other elements of the array.