Which TWO of the following are common techniques to reduce overfitting in a neural network?
Correct; L2 regularization adds a penalty on squared weights.
Why this answer
L2 regularization (option C) reduces overfitting by adding a penalty term proportional to the squared magnitude of the weights to the loss function. This forces the network to keep weights small, preventing it from fitting noise in the training data and improving generalization.
Exam trap
CompTIA often tests the misconception that adding more layers or training longer always improves accuracy, when in fact these actions typically increase overfitting without proper regularization or validation monitoring.