Yоu аre implementing а custоm MyHаshMap class. Tо maintain performance, you monitor the Load Factor (alpha) using the following logic in your put method: Java public void put(K key, V value) { if ((double) size / capacity > threshold) { rehash(); // Increases capacity and redistributes entries } // ... logic to insert entry ... } Based on the code above and the standard definition of the Load Factor (alpha), which statement correctly describes its calculation and its impact on performance?