Skip to main content
EnglandComputer ScienceSyllabus dot point

How is data physically transmitted between devices?

Understand serial and parallel transmission, synchronous and asynchronous transmission, bit rate, baud rate and bandwidth, and the trade-offs between these methods.

A focused answer to AQA A-Level Computer Science 4.8.1, covering serial and parallel transmission, synchronous and asynchronous transmission, the meaning of bit rate, baud rate and bandwidth, and the trade-offs between methods.

Generated by Claude Opus 4.88 min answer

Reviewed by: AI editorial process; not yet individually human-reviewed

Have a quick question? Jump to the Q&A page

Jump to a section
  1. What this dot point is asking
  2. Serial and parallel transmission
  3. Synchronous and asynchronous transmission
  4. Bit rate, baud rate and bandwidth

What this dot point is asking

AQA wants you to distinguish serial and parallel transmission, distinguish synchronous and asynchronous transmission, and define bit rate, baud rate and bandwidth with the relationships between them.

Serial and parallel transmission

It can seem counter-intuitive that serial, which sends one bit at a time, beats parallel for high-speed links. The reason is that parallel's advantage depends on all the bits in a group arriving perfectly aligned; as clock speeds rise and wires lengthen, tiny differences between the wires (skew) and interference (crosstalk) make that alignment impossible to maintain, forcing slower clocking. A single serial line has no inter-line skew, so it can be clocked much faster, and that higher clock rate outweighs sending only one bit per tick.

Synchronous and asynchronous transmission

Bit rate, baud rate and bandwidth

The three terms are often muddled but are distinct. Bandwidth is a physical property of the channel (how wide a frequency range it can carry); baud rate is how many times per second the signal changes; bit rate is how many bits actually move per second. By encoding more bits into each signal change (each symbol), modern systems push the bit rate well above the baud rate, which is why bit rate and baud rate are not interchangeable in calculations.

Exam-style practice questions

Practice questions written in the style of AQA exam questions on this dot point, with worked answer explainers. The year tag is the paper they imitate, not the source.

AQA 20194 marksA communication channel transmits at 4800 baud, and each signal change carries 3 bits. Calculate the bit rate, then calculate the time in seconds to transmit a 9000 byte file across this channel, showing your working.
Show worked answer →

Bit rate == baud rate ×\times bits per symbol =4800×3=14400= 4800 \times 3 = 14\,400 bits per second.

The file is 90009000 bytes =9000×8=72000= 9000 \times 8 = 72\,000 bits.

Time == bits ÷\div bit rate =72000/14400=5= 72\,000 / 14\,400 = 5 seconds.

Markers reward multiplying baud by bits per symbol for the bit rate (14 400 bps), converting bytes to bits, and dividing to get 5 seconds. A candidate who confuses baud and bit rate (using 4800) would get the wrong time and lose the method link.

AQA 20213 marksExplain why serial transmission is generally preferred to parallel transmission for high-speed and long-distance links.
Show worked answer →

Parallel transmission sends several bits at once down multiple wires, which is fast over short distances, but over longer distances the separate lines suffer from skew (bits travelling down slightly different-length or differently-affected wires arrive at slightly different times) and crosstalk (signals interfering between adjacent wires). These effects worsen as speed and distance increase, so the bits can no longer be reliably read together.

Serial transmission sends bits one after another down a single line, avoiding skew between lines, so it stays reliable at high speeds and over long distances, which is why modern high-speed links such as USB use serial transmission.

Markers reward identifying skew and crosstalk as the problems with parallel over distance and that serial avoids inter-line skew, making it reliable at high speed.

Related dot points

Sources & how we know this