Full Weekly and Differential Daily Backup Strategy
An organization wants to minimize the recovery time from backups in case of a disaster. Backups must be retained for one month, while minimizing the storage space used for backups. Which of the following is the best approach for a backup strategy?
Community Votes
46% of anonymous learners picked answer C. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
A differential captures everything changed since the last full, so a restore needs only the last full plus the newest differential, while an incremental schedule must replay the full plus every incremental in order.
The organization wants the shortest restore while keeping a month of retention and limiting the storage consumed. A weekly full backup with daily differentials restores from only two media sets and keeps well inside the one-month retention rule without paying for a nightly full.
Choosing full weekly with incremental daily because incremental jobs are smaller. Incremental saves the most space but produces the longest restore, and the stem puts recovery time ahead of storage.
Community Discussion (20 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
A differential backup captures everything changed since the last full backup, so restoring means applying only the last full and the most recent differential. That two-step restore is the shortest recovery time available short of a full backup every night, and a weekly full still gives four restore points inside the one-month retention window. Storage stays under control because only one full copy is written per week instead of one per day.Why the Other Options Are Wrong
Full weekly with incremental daily uses the least space of the realistic combinations, but a restore has to replay the last full plus every daily incremental in sequence, which is the slowest recovery and fails the stated priority. Full daily gives the fastest restore possible but multiplies storage far beyond what the requirement allows. Full monthly with incremental daily and differential weekly mixes two changed-data methods in one schedule, producing redundant copies and the slow incremental restore while still using more space than needed.Community Comment Notes
The thread splits mainly between full weekly with incremental daily and full weekly with differential daily, with the recovery-time wording deciding it for most. Several commenters summarise the trade-off correctly: incremental is shortest to write and longest to restore, differential is the reverse, and full is longest to write and shortest to restore. Others argue that differentials consume more space, which is true, but the stem lists recovery time as the objective and treats storage as a secondary constraint.Official Reference
Exam Strategy
Decide what the stem asks for first: minimize recovery time points to differential, while minimize space or backup window points to incremental. Then check that a full backup anchors the schedule and that retention is met.
Frequently Asked Questions
How many backups must be applied to restore from a weekly full plus daily differential schedule?
Two: the most recent full backup and the most recent differential taken after it. The differential holds every change since that full, so earlier differentials in the same week are not needed.
When should incremental backups be chosen instead of differential ones?
Choose incremental when the constraint is storage space, backup window, or bandwidth, because each job copies only what changed since the last job; a restore replays the full plus every incremental.