Data Transmission · 4 question types
Past paper frequency (2018 to 2024)
This topic accounts for approximately 4% of your exam marks.
Serial vs parallel and simplex/half-duplex/full-duplex appear as definition or comparison questions.
The first wired-transmission choice is how many bits travel at once.
In , bits travel one at a time along a single wire (or one pair of wires). The bits arrive in the order they were sent.
Used by: USB, Ethernet, the internet itself, SATA disk interfaces, HDMI.
In , several bits travel simultaneously along several wires. With 8 wires you can send a whole byte at once. A clock signal usually keeps the wires synchronised.
Used by: the buses inside a computer (between the CPU and RAM, for example), old printer cables (LPT), older external hard-drive interfaces (IDE).
Parallel only works while every wire delivers its bit at the same instant. Over long distances, the wires drift slightly out of step (one wire is microscopically longer, or has higher resistance, or is more noisy), so the bits arrive at slightly different times. This effect is called , and it corrupts the data because the receiver can no longer tell which bits belong to which group.
Skew gets worse as distance grows. That is why short, internal connections inside a computer can use parallel happily, but long external links almost always use serial.
| Feature | Serial | Parallel |
|---|---|---|
| Bits per moment | 1 | Many (one per wire) |
| Number of wires | Few (often 1 or 2) | Many (8, 16, 32 or more) |
| Cable cost | Cheaper | More expensive |
| Speed over short distances |
A common surprise: USB 3.0 (serial) runs at 5 Gbps, far faster than the old parallel printer port (about 8 Mbps). Modern serial links use very high clock speeds and avoid the skew problem, so they outrun every classic parallel interface. Parallel is not "always faster than serial"; it only wins over very short distances where skew is negligible.
Comparing serial and parallel transmission
What comes up: The exam asks you to compare serial and parallel, or to explain why serial is preferred for a given scenario (especially over long distances).
Write (two marks per point, paired): (1) Serial sends one bit at a time down a single wire, so bits always arrive in order — there is no skew; over long distances this makes it far more reliable. (2) Parallel sends multiple bits simultaneously down multiple wires, giving higher speed over short distances, but bits can arrive out of step (skew) over longer cables, causing errors.
Watch out: Do not say parallel is simply "faster than serial" without qualification — that is only true over short distances where skew is not a problem. The mark scheme credits the explanation that skew or interference limits parallel to short-distance use; stating "parallel is always faster" misses the mark.
| Slower (one bit at a time) |
| Faster (multiple bits at a time) |
| Reliability over long distances | Much better | Poor (skew, interference) |
| Typical use | USB, Ethernet, internet, modern SSDs | Internal computer buses, legacy printer / drive cables |