Implement a dynamically resizable hash table to store people’snames and Social Security numbers. Use the extraction method withdivision using the last four digits of the Social Security number.Use an initial table size of 31 and a load factor of 0.80. Use openaddressing with double hashing using an extraction method on thefirst three digits of the Social Security number. Note: U.S. SSNnumbers are 9 digits like the Canadian Social Insurance Number(SIN).
Using java program and please add the screenshot of outputtoo.
Answer