I will have to do some research to give you a good example of the hash table portion, but assuming mod means the modulus operator then mode71 is not much different than mod 10. The modulo operator returns the remainder after a division so taking the first number for example, 4371 mod 10 would be 1 (4371/10 = 431 r. 1) and 4371 mod 7 would be 3 (4371/7 = 624 r 3)
Looks good. As for drawing out the hash tables that will depend on which collision method you are using. Linear probing and chaining are the most common. I believe that chaining is the common method that is taught at universities (it was at mine). which looks something like this.