Final answer:
Insertion sort is a sorting algorithm that works by repeatedly taking an element from the unsorted part of the array and inserting it into its correct position in the sorted part of the array. So, the correct answer is 2) The next element in the "unsorted" list is moved in comparison to other elements in the "sorted" list until all elements are sorted to each other.
Step-by-step explanation:
Insertion sort is a sorting algorithm that works by repeatedly taking an element from the unsorted part of the array and inserting it into its correct position in the sorted part of the array.
Here's how it works:
Start with the second element in the array and compare it to the elements in the sorted part of the array.
If the current element is smaller, shift the larger elements to the right until the correct position is found.
Repeat this process for each element in the unsorted part of the array.
This process continues until all the elements are sorted, and the array is in ascending order.
Thus, the correct answer is 2) The next element in the "unsorted" list is moved in comparison to other elements in the "sorted" list until all elements are sorted to each other.