| 1 | Insert key | 10 | 10 % 11 = 10 | 10 | Empty | Place key at index 10 | [-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 10] |
| 2 | Insert key | 22 | 22 % 11 = 0 | 0 | Empty | Place key at index 0 | [22, -1, -1, -1, -1, -1, -1, -1, -1, -1, 10] |
| 3 | Insert key | 31 | 31 % 11 = 9 | 9 | Empty | Place key at index 9 | [22, -1, -1, -1, -1, -1, -1, -1, -1, 31, 10] |
| 4 | Insert key | 4 | 4 % 11 = 4 | 4 | Empty | Place key at index 4 | [22, -1, -1, -1, 4, -1, -1, -1, -1, 31, 10] |
| 5 | Insert key | 15 | 15 % 11 = 4 | 4 | Occupied (4) | Move to index 5 | [22, -1, -1, -1, 4, -1, -1, -1, -1, 31, 10] |
| 6 | Check slot | 15 | 5 | 5 | Empty | Place key at index 5 | [22, -1, -1, -1, 4, 15, -1, -1, -1, 31, 10] |
| 7 | Insert key | 28 | 28 % 11 = 6 | 6 | Empty | Place key at index 6 | [22, -1, -1, -1, 4, 15, 28, -1, -1, 31, 10] |
| 8 | Insert key | 17 | 17 % 11 = 6 | 6 | Occupied (28) | Move to index 7 | [22, -1, -1, -1, 4, 15, 28, -1, -1, 31, 10] |
| 9 | Check slot | 17 | 7 | 7 | Empty | Place key at index 7 | [22, -1, -1, -1, 4, 15, 28, 17, -1, 31, 10] |
| 10 | Insert key | 88 | 88 % 11 = 0 | 0 | Occupied (22) | Move to index 1 | [22, -1, -1, -1, 4, 15, 28, 17, -1, 31, 10] |
| 11 | Check slot | 88 | 1 | 1 | Empty | Place key at index 1 | [22, 88, -1, -1, 4, 15, 28, 17, -1, 31, 10] |
| 12 | Insert key | 59 | 59 % 11 = 4 | 4 | Occupied (4) | Move to index 5 | [22, 88, -1, -1, 4, 15, 28, 17, -1, 31, 10] |
| 13 | Check slot | 59 | 5 | 5 | Occupied (15) | Move to index 6 | [22, 88, -1, -1, 4, 15, 28, 17, -1, 31, 10] |
| 14 | Check slot | 59 | 6 | 6 | Occupied (28) | Move to index 7 | [22, 88, -1, -1, 4, 15, 28, 17, -1, 31, 10] |
| 15 | Check slot | 59 | 7 | 7 | Occupied (17) | Move to index 8 | [22, 88, -1, -1, 4, 15, 28, 17, -1, 31, 10] |
| 16 | Check slot | 59 | 8 | 8 | Empty | Place key at index 8 | [22, 88, -1, -1, 4, 15, 28, 17, 59, 31, 10] |
| 17 | Insert key | 5 | 5 % 11 = 5 | 5 | Occupied (15) | Move to index 6 | [22, 88, -1, -1, 4, 15, 28, 17, 59, 31, 10] |
| 18 | Check slot | 5 | 6 | 6 | Occupied (28) | Move to index 7 | [22, 88, -1, -1, 4, 15, 28, 17, 59, 31, 10] |
| 19 | Check slot | 5 | 7 | 7 | Occupied (17) | Move to index 8 | [22, 88, -1, -1, 4, 15, 28, 17, 59, 31, 10] |
| 20 | Check slot | 5 | 8 | 8 | Occupied (59) | Move to index 9 | [22, 88, -1, -1, 4, 15, 28, 17, 59, 31, 10] |
| 21 | Check slot | 5 | 9 | 9 | Occupied (31) | Move to index 10 | [22, 88, -1, -1, 4, 15, 28, 17, 59, 31, 10] |
| 22 | Check slot | 5 | 10 | 10 | Occupied (10) | Move to index 0 | [22, 88, -1, -1, 4, 15, 28, 17, 59, 31, 10] |
| 23 | Check slot | 5 | 0 | 0 | Occupied (22) | Move to index 1 | [22, 88, -1, -1, 4, 15, 28, 17, 59, 31, 10] |
| 24 | Check slot | 5 | 1 | 1 | Occupied (88) | Move to index 2 | [22, 88, -1, -1, 4, 15, 28, 17, 59, 31, 10] |
| 25 | Check slot | 5 | 2 | 2 | Empty | Place key at index 2 | [22, 88, 5, -1, 4, 15, 28, 17, 59, 31, 10] |
| 26 | End | - | - | - | - | - | Insertion complete |
| 27 | Final Table State | - | - | - | - | - | [22, 88, 5, -1, 4, 15, 28, 17, 59, 31, 10] |