A server takes a full backup every Sunday and a differential backup every weeknight. Its drive fails on Wednesday afternoon, after Tuesday night's differential completed. Which media are required to restore the server to its most recent state?
- AThe Sunday full backup plus every differential taken since Sunday.
- BThe Sunday full backup plus only the most recent differential backup. Correct
- COnly the most recent differential backup taken on Tuesday night.
- DThe Sunday full backup plus every incremental taken since Sunday.
Why A is wrong: This is the correct rule for an incremental chain, but differentials do not clear the archive bit, so each one already contains all prior changes and only the latest is needed.
Why B is correct: Correct: a differential captures everything changed since the last full, so restoring the full and then applying only Tuesday night's differential rebuilds the server to its latest backed-up state in two steps.
Why C is wrong: The latest differential holds recent changes, but a differential is not self-contained and cannot restore without first laying down the base full it was measured against.
Why D is wrong: This describes an incremental restore, but the schedule ran differentials, not incrementals, so no such incremental set exists to apply.