What is the result of applying one iteration of SelectionSort if one wants to sort the list in increasing order and starts from the left? 2024-8-27 12:51 | 165 | 0 | A1 28 Words | Few seconds 1.Example: [5, 20, -5, 10, 3] Answer: [-5, 20, 5, 10, 3] 2.Example: [6, 5, 4, 3, 2, 1] Answer: [1, 5, 4, 3, 2, 6] A1Selection SortingSolvedSorting