Utility programs are system software that perform maintenance tasks to keep the computer running efficiently and securely.
They are system software, not applications, because they look after the system rather than performing a task the user set out to do.
The utilities worth knowing
| Utility | What it does | Why it is needed |
|---|
| Antivirus / anti-malware | Scans for and removes malicious software | Protects the system and its data from attack |
| Backup | Copies files to another location | Allows recovery after failure, deletion or attack |
| Compression | Reduces file sizes (3.3.8) | Saves storage space and speeds up transfer |
| Defragmentation | Reorganises files on a magnetic hard disk so each is stored in one place | Reduces read time, since the head moves less |
| Disk clean-up | Removes temporary and unnecessary files | Frees storage space |
| Encryption | Scrambles data so it cannot be read without a key | Protects confidentiality if data is stolen |
| File management | Copying, moving, renaming and deleting files | Organises data |
Defragmentation — worth understanding, not just naming
Over time, files on a magnetic hard disk become split into pieces stored in different physical locations, because files are deleted and new ones written into the gaps. Reading such a file requires the read/write head to move to several places, which is slow.
Defragmentation reorganises the data so each file is stored contiguously, reducing head movement and speeding up access.
⚠️ Defragmentation is unnecessary — and undesirable — on an SSD. Solid-state storage has no moving parts, so fragmentation does not slow it down, and needless rewriting shortens its life (3.4.5).
Why utilities are needed
- Systems degrade over time — files fragment, temporary files accumulate, disks fill up.
- Systems face threats — malware, data loss, unauthorised access.
- Users need housekeeping they should not have to do manually.
AQA tip. When naming a utility, add what it does and, ideally, why it is needed. "Backup software — copies files to a second location so they can be recovered if the original is lost or corrupted" is a complete answer; the bare word "backup" usually is not.