Answer: Selection sort
Explanation:
In selection sort for ascending sort it repeatedly goes through the list to find the minimum element and puts it in among the sorted elements.
here we are taking the first value of the array as the minimum value and we repeatedly go through the array to compare it with all the elements present in the array. When we find the smallest element it place it in the 0 index position and then continue our search from the index position 1 and continue so on till the list is sorted.