Since you just learned these algorithms, let me summarize each pass of the first three sorting algorithms:
Questions 1-4: Here is our initial vector:
Index: 0 1 2 3 4 5 6 7 8 9
Value: 46 28 5 56 47 85 44 14 66 72
After one pass of bubble sort:
Question 1: What value is at index 0?
Question 2: What value is at index 4?
Question 3: What value is at index 5?
Question 4: What value is at index 9?
Questions 5-8: Here is our initial vector:
Index: 0 1 2 3 4 5 6 7 8 9
Value: 50 64 14 31 13 84 31 48 21 54
After two passes of selection sort:
Question 5: What value is at index 0?
Question 6: What value is at index 1?
Question 7: What value is at index 2?
Question 8: What value is at index 3?
Questions 9-12: Here is our initial vector:
Index: 0 1 2 3 4 5 6 7 8 9
Value: 92 99 24 73 14 76 93 57 28 88
After two passes of insertion sort:
Question 9: What value is at index 0?
Question 10: What value is at index 1?
Question 11: What value is at index 2?
Question 12: What value is at index 3?