Difficulty: Easy
Correct Answer: saves only files that have recently changed
Explanation:
Introduction / Context:Backup schemes determine what data is copied and when. Understanding full, differential, and incremental backups is essential for designing reliable recovery plans while managing storage and time costs.
Given Data / Assumptions:
Concept / Approach:
An incremental backup copies only files changed since the most recent backup of any kind (often the last incremental or full). This reduces data volume and time but may require a longer restore sequence: latest full + all subsequent incrementals in order.
Step-by-Step Solution:
Identify backup types: full, differential, incremental.Match definition: incremental = changes since last backup.Conclude that “saves only files that have recently changed” is accurate.Verification / Alternative check:
Backup software documentation consistently describes incrementals as capturing changes since the previous backup, contrasting with differential (since last full) and full (everything).
Why Other Options Are Wrong:
Common Pitfalls:
Confusing incremental with differential; underestimating restore complexity when many incremental sets exist.
Final Answer:
saves only files that have recently changed
Discussion & Comments