File Compression: This utility uses algorithms to reduce the storage space required for files. Lossless compression allows the original data to be perfectly reconstructed, while lossy compression achieves higher reduction by permanently removing less critical data (common in media files).
Backup Software: This creates redundant copies of data to protect against hardware failure or accidental deletion. Full backups copy every file on the system, whereas incremental backups only save files that have changed since the last backup, saving time and storage space.
| Feature | Lossless Compression | Lossy Compression |
|---|---|---|
| Data Integrity | 100% of original data retained | Some data is permanently discarded |
| File Size | Moderate reduction | Significant reduction |
| Use Case | Text files, executable code | Images, audio, video |
| Backup Type | Full Backup | Incremental Backup |
|---|---|---|
| Speed | Slow (copies everything) | Fast (copies only changes) |
| Storage | High usage | Low usage |
| Recovery | Simple (one set of files) | Complex (requires last full + all increments) |
Identify the Context: If a question mentions 'improving performance on an HDD', the answer is likely defragmentation. If it mentions 'preparing a new drive', it is disk formatting.
Storage Type Matters: Remember that defragmentation is only beneficial for magnetic storage (HDDs). It should not be used on SSDs as it provides no speed benefit and can actually reduce the lifespan of the drive.
Compression Logic: Always check if the file type can tolerate data loss. Executable files () or spreadsheets must use lossless compression, or they will become corrupted and unusable.
Backup Efficiency: In exam scenarios involving large datasets, suggest incremental backups for daily use and full backups for weekly or monthly cycles to balance safety and efficiency.