The software you did not install for fun: the operating system, and utilities that tidy, encrypt, and compress. Short unit — still a favourite for “describe the purpose of…” questions.
1.5.1 Operating systems
An OS manages hardware and provides a platform for applications. OCR’s list of jobs:
User interface
GUI (windows, icons, pointers) or CLI (typed commands). The OS presents this so you are not flipping CPU flags by hand.
Memory management
Decides which process gets which RAM, protects processes from overwriting each other, works with virtual memory (see 1.2.1).
Multitasking
Gives the illusion of many programs at once by scheduling slices of CPU time. One core still does one thing at a time; switching is fast.
Peripheral management and drivers
Printers, keyboards, GPUs — the OS talks to them through device drivers (translator software for that model of hardware).
User management
Accounts, passwords, access rights. Different users can have different files and privileges.
File management
Creating, naming, copying, moving, deleting files; directories; knowing which sectors on disk belong to which file.
Without an OS you would boot a single dedicated program (see embedded systems) or toggle switches on a front panel. General-purpose machines need this layer.
1.5.2 Utility software
Utilities do extra jobs the OS may not do (or not do in a way you invoke day to day). OCR names three:
| Utility | Purpose |
|---|---|
| Encryption software | Scramble files/disks so stolen media is unreadable without the key |
| Defragmentation | On magnetic HDDs, files get split into fragments; a defragger puts blocks back together so the head moves less. Do not defrag an SSD as an exam answer — it does not help and wears flash |
| Compression | Make copies smaller for storage or email (see 1.2.5) |
The spec also wants you to know utility software is needed for additional tasks the OS may not carry out. Backup tools, disk checkers, and anti-malware are the same idea if a question is broader, but learn the three named ones cold.
Exercises are “purpose in one sentence” drills — that is how Paper 1 marks these.