1. Example: [5, 20, -5, 10, 3]
[5, 20, -5, 10, 3] because in the first iteration, it compares 5 and 20, and since 20 is greater than 5 it stays in the same position.
2. Example: [-7,-1,-4,4,5,6]
Answer:
[-7,-1,-4,4,5,6] -> List remains unchanged as -7 at index 0 is smaller than index 1.