0984

Types and Methods of Data Transmission

Data Transmission · 4 question types

Exam Frequency Analysis

Past paper frequency (2018 to 2024)

This topic accounts for approximately 4% of your exam marks.

stable
Rare
Stable4%

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.

Serial transmission

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.

Serial transmission between a sender and a receiver. A single arrow (one wire) runs from the Sender box to the Receiver box, carrying the bits one after another
Source: Data Transmission by Save My Exams

Parallel transmission

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 transmission between a sender and a receiver. Several arrows (multiple wires) run side by side from the Sender box to the Receiver box, carrying several bits simultaneously
Source: Data Transmission by Save My Exams

A subtle problem: skew

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.

Side-by-side

FeatureSerialParallel
Bits per moment1Many (one per wire)
Number of wiresFew (often 1 or 2)Many (8, 16, 32 or more)
Cable costCheaperMore expensive
Speed over short distancesSlower (one bit at a time)Faster (multiple bits at a time)
Reliability over long distancesMuch betterPoor (skew, interference)
Typical useUSB, Ethernet, internet, modern SSDsInternal computer buses, legacy printer / drive cables

Why modern fast links are actually serial

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.

Exam tip

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.