Which of the following statements is/are FALSE ? Select all that apply. A. Hash tables with linear probing will require less rehashing than hash tables using separate chaining. B. Linear probing is better than double hashing at preventing keys in a table from clustering together. C. Hash tables that use linear probing have a better worst-case complexity than hash tables that use separate chaining. D. Linear probing will have a better average-case time complexity for lookup. E. For both linear probing and separate chaining, collisions only occur between elements that have the same hash value.