Consider a hash table of size seven with starting index zero and a hash function (6x + 3) mod 4. Assuming the hash table is initially empty. Which of the following is the content of the table when the sequence 1, 3, 8, 10, 5. is inserted into the table using closed hashing? Here "_______" denotes an empty location in the table.
1
1, 3, 8, 10, 5, _, _
2
3, 8, 1, _, 10, 5
3
_,3, 8, 1, _, 10, 5
4
_1, 3, 8, 10, 5, _