Explain the bias–variance trade-off without using the words bias or variance.
A model can be wrong in two different ways. It can be too simple to capture the real pattern, so it makes the same mistake on every dataset you give it — consistently wrong in the same direction. Or it can be flexible enough to chase the noise in whatever data it happened to see, so it does brilliantly on that data and differently badly on the next batch.
You cannot minimise both freely. Making the model more flexible reduces the first error and increases the second. The useful question in practice is which one you currently have, and the diagnostic is the gap between training and validation performance: bad at both means too simple, great at training and bad at validation means it memorised.
Strong answer: mentions that this framing is about expected error over resampled datasets, and notes that modern overparameterised networks complicate the classic U-shaped curve — they can interpolate the training data and still generalise.