Track progress, take quizzes and save notes on this lesson.

Free forever · no card needed

Start free
Foundational

Communication Methods

4.9.1.1 Communication methods·4.9.1.2 Communication basics

Aligned to the AQA 7517 specification

Level
Foundational
Reading time
6 min
Published
13 June 2026
Updated
1 July 2026
On this page
  1. 1.Serial vs Parallel Transmission
  2. 2.Synchronous vs Asynchronous Transmission
  3. 3.Baud Rate vs Bit Rate
  4. 4.Bandwidth, Latency, and Protocol
  5. 5.Transmission Speed: Worked Examples
  6. 6.Common Exam Mistakes

Key takeaways

  • Serial transmission sends one bit at a time over a single wire; parallel sends multiple bits simultaneously on separate wires, one per bit.
  • Serial dominates over long distances because parallel suffers from skew: bits sent simultaneously arrive at different times, worsening with distance and corrupting data.
  • Synchronous transmission uses a shared clock to define bit boundaries; asynchronous has no shared clock and frames each byte with a start bit and a stop bit.
  • Baud rate is signal changes per second; bit rate is bits per second. They are equal only when each symbol encodes exactly one bit, so bit rate ≥ baud rate.
  • Transmission time = file size in bits ÷ bit rate in bps; latency adds delay before and after transfer but does not change the raw bit rate.

Serial vs Parallel Transmission

Serial transmission sends one bit at a time over a single wire.

Parallel transmission sends multiple bits simultaneously, each on its own wire. An 8-bit parallel bus sends a full byte per cycle.

Why serial dominates over long distances:

SerialParallel
Wires1 (one per bit)
Bits per cycle1
SkewNo skewSkew possible (bits arrive at different times)
DistanceLong-distance reliableShort-distance only
CostCheapMore wires, more cost
ExamplesUSB, Ethernet, SATAInternal memory buses, parallel printer ports (legacy)

Skew: in parallel transmission, each wire has slightly different electrical properties. Bits sent simultaneously may arrive at the receiver at different times — the further the distance, the worse the skew, causing data corruption. Serial transmission avoids this entirely.

USB uses serial transmission despite its name ("Universal Serial Bus") and is faster than the older parallel printer ports it replaced.

Synchronous vs Asynchronous Transmission

Both methods address the same question: how does the receiver know when each bit begins and ends?

Synchronous transmission

  • Sender and receiver share a common clock signal
  • Data is sent as a continuous stream timed to the clock
  • No need for start/stop bits — the clock defines boundaries
  • Used for: high-speed bulk transfers (e.g. USB in synchronous mode, network links)
  • Requires clock synchronisation between devices

Asynchronous transmission

  • No shared clock between sender and receiver
  • Each data unit (typically a byte) is framed by a start bit (signals transmission is beginning) and a stop bit (signals end)
  • The receiver re-synchronises its own clock to the start bit edge for each byte
  • Flexible timing — sender can transmit whenever ready
  • Slightly less efficient (overhead of start/stop bits)
  • Used for: keyboard input, serial ports (RS-232), UART

Comparison:

SynchronousAsynchronous
ClockSharedNot shared
FramingClock defines bit boundariesStart/stop bits frame each byte
EfficiencyHigher (no framing bits)Lower (extra bits per byte)
UseContinuous bulk dataBursty, irregular data

Baud Rate vs Bit Rate

Baud rate is the number of signal changes (symbols) per second. It measures how frequently the transmission medium changes state.

Bit rate is the number of bits transmitted per second.

If each symbol represents a single bit (binary signalling): bit rate = baud rate.

If each symbol represents more than one bit (e.g. using 4 voltage levels to encode 2 bits per symbol): bit rate = baud rate × bits per symbol.

Example:

  • Baud rate = 1000 symbols/second
  • 2 bits per symbol (4 possible signal levels)
  • Bit rate = 1000 × 2 = 2000 bits/second = 2 kbps

Key rule: bit rate ≥ baud rate, with equality only when each symbol encodes exactly one bit.

Bandwidth, Latency, and Protocol

Bandwidth is the range of frequencies a communication channel can carry. A wider frequency range allows more signal changes per second, supporting a higher maximum bit rate. Bandwidth is measured in Hertz (Hz) for the physical channel or in bits per second (bps) for digital throughput.

Latency is the time delay between a signal being sent and being received. Latency is distinct from bandwidth:

  • High bandwidth with high latency: can send lots of data but each packet takes time to arrive
  • Low latency with low bandwidth: fast response but limited throughput

Latency arises from: propagation delay (signal travel time), queuing at routers, processing delay at each hop.

Protocol is an agreed set of rules that governs communication between two or more devices. A protocol specifies:

  • The format and structure of messages
  • How connections are established and terminated
  • Error detection and correction procedures
  • Addressing conventions

Without a protocol, two devices cannot reliably communicate even if they share the same physical medium.

Worth saving these ideas?

Turn what you've read into instant revision cards. Free to get started.

Make flashcards

Transmission Speed: Worked Examples

Example 1 — calculating bit rate from baud rate:

A channel has a baud rate of 2000 symbols/second. Each symbol encodes 3 bits. What is the bit rate?

Example 2 — time to transmit a file:

A 4 MB file is sent over a 2 Mbps (megabits per second) connection. How long does transmission take?

Example 3 — comparing two channels:

ChannelBaud rateBits per symbolBit rate
A10 000110 000 bps
B5 000420 000 bps

Channel B has a lower baud rate but a higher bit rate — it uses more efficient encoding.

Key conversions:

  • 1 byte = 8 bits
  • 1 kbps = 1000 bits/second (networking uses SI, not binary prefixes)
  • Transmission time = file size (bits) ÷ bit rate (bps)

Note: latency is not included in transmission time calculations above. A high-latency link adds delay before and after data transfer but does not change the raw bit rate.

Common Exam Mistakes

1. Confusing baud rate and bit rate

Baud rate counts signal changes per second; bit rate counts bits per second. They are equal only when each signal change represents exactly one bit. Modern modems use multi-level signalling so bit rate > baud rate.

2. Stating parallel transmission is faster than serial

Parallel transmission sends more bits per cycle but suffers from skew and is limited to short distances. Modern serial standards (USB 3.x, PCIe, Thunderbolt) achieve far higher bit rates than legacy parallel systems by running at much higher frequencies without skew problems.

3. Confusing synchronous and asynchronous with other meanings

In networking, synchronous/asynchronous describe clock sharing and start/stop bit usage — not the programming concept of asynchronous function calls. The networking meaning is distinct.

4. Omitting both start AND stop bits for asynchronous

Asynchronous transmission uses a start bit (signals beginning) AND a stop bit (signals end) per byte. Mentioning only one loses marks.

Key terms

Serial transmission
Sending one bit at a time over a single wire.
Parallel transmission
Sending multiple bits simultaneously, each on its own wire; an 8-bit parallel bus sends a full byte per cycle.
Skew
In parallel transmission, bits sent simultaneously arriving at the receiver at different times because each wire has slightly different electrical properties; it worsens with distance and can corrupt data.
Synchronous transmission
Transmission where sender and receiver share a common clock signal that defines bit boundaries, sent as a continuous stream with no start/stop bits.
Asynchronous transmission
Transmission with no shared clock, where each byte is framed by a start bit and a stop bit and the receiver re-synchronises to the start bit edge.
Start bit
A bit in asynchronous transmission that signals the beginning of a data unit.
Stop bit
A bit in asynchronous transmission that signals the end of a data unit.
Baud rate
The number of signal changes (symbols) per second, measuring how frequently the transmission medium changes state.
Bit rate
The number of bits transmitted per second.
Bandwidth
The range of frequencies a communication channel can carry; a wider range allows more signal changes per second and a higher maximum bit rate.
Latency
The time delay between a signal being sent and being received, arising from propagation, queuing, and processing delays.
Protocol
An agreed set of rules governing communication between two or more devices, specifying message format, connection setup/teardown, error handling, and addressing.

Frequently asked questions

Because parallel transmission suffers from skew: each wire has slightly different electrical properties, so bits sent simultaneously arrive at different times, and the further the distance the worse the skew, causing data corruption. Serial sends one bit on a single wire and avoids skew entirely.

Baud rate is the number of signal changes (symbols) per second; bit rate is the number of bits transmitted per second. If each symbol encodes more than one bit, bit rate = baud rate × bits per symbol, so bit rate is greater than or equal to baud rate, equal only when each symbol carries one bit.

USB uses serial transmission despite its name ("Universal Serial Bus") and is faster than the older parallel printer ports it replaced.

Generate revision on any topic you study

Type any topic you're studying and Aicademy generates a complete lesson, quiz, and flashcard set, personalised to your level.

Lessons on anything

Structured, level-matched lessons on any topic you study

Practice quizzes

Find out what you actually know before the exam does

Flashcard sets

Lock in key concepts with instant revision cards

Ask Aica

Stuck on something? Get a clear explanation, any time

Prev

Consequences of Computing

Next

Network Topology and Wireless Networking

Related lessons

Top students don’t revise more. They revise what counts.

Start revising free

Free to start. No card needed.