Ridge Regression modifies ordinary least squares by adding a penalty on the size of the weights: $\text{Cost} = \text{RSS} + \lambda \sum w_i^2$. We check each statement against this definition.
The correct option is the fourth one: Ridge Regression's $L_2$ penalty increases bias slightly while reducing variance, which is the standard bias-variance trade-off behind regularization.
Let's summarize:
So the statement in option (D) is the one that correctly describes Ridge Regression.