When your HashTable methods Insert(), Find() and Delete() are called, your code must log the indices of the table slots that are examined, beginning with the home slot, and then write an indication of the results. Here are examples of the precise format that's required: -------------------------------------------------------------------------------- Command: find Dick, Philip K Searching: 0 found -------------------------------------------------------------------------------- Command: find de Camp, L Sprague Searching: 6 7 found -------------------------------------------------------------------------------- Command: delete Willis, Connie Searching: 6 deleted -------------------------------------------------------------------------------- Command: find Willis, Connie Searching: 6 7 10 not found -------------------------------------------------------------------------------- Command: insert Willis, Connie 99 High Castle Road Tarzana, CA 90003 Searching: 6 7 10 inserted -------------------------------------------------------------------------------- The label at the beginning of each output line, "Searching:" is written by the test driver, NOT by your code. You should log the index numbers, separated by spaces or tabs, and then one of the strings shown above ("found", "not found", etc). There is a newline character at the end of each line, but that is also written by the test driver, NOT by your code.