Let S be the concatenated ASCII equivalent of your first name and your last name.
a. Assume the elements of S are sets of keys k, build a hash table with bucket size n = 7 using the hash function h(k) = k mod n. Resolve collisions by a hybrid of linear probing and separate chaining. [3 marks]
b. Write a function for 2a using your chosen programming language. Test your result using S. [3 marks]
c. Using S, build a min-heap. [3 marks]
d. Draw the heap after 3 removals. [3 marks] Ans [Scan and paste solution here if the solution involves drawing and writing at the same time]