You have a hash table with 4 buckets and you insert the numbers {0, 3, 6, 10, 14} using the identity hash function and a max load factor . What is the bucket at index 2?
Tip: Remember that the bucket for an item with a hash value is and buckets are indexed from 0. Do not forget to check the load factor.