Consider a hash table with open addressing that evaluates the load factor before adding a new element. If the load factor is larger than 50%, the table is reorganized by doubling the table capacity (the number of possible elements). Then the existing elements are rehashed and inserted into the new table, as well as the new element. Assuming an initial hash table capacity of 2 with 0 elements, what is the table capacity after adding 11 elements?
Is the table capacity 32? If not, what is the correct capacity?