You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
This lesson covers how data is transmitted across networks, including serial vs parallel transmission, simplex/half-duplex/full-duplex modes, synchronous vs asynchronous transmission, bandwidth, and latency. These concepts are part of the OCR H446 specification section 1.3.
In serial transmission, data bits are sent one after another along a single communication channel (wire).
Sender: [1][0][1][1][0][1][0][0] →→→ single wire →→→ Receiver
| Feature | Detail |
|---|---|
| Speed | Generally slower than parallel (for short distances) |
| Distance | Suitable for long distances — less interference |
| Cost | Lower — fewer wires needed |
| Skew | No skew issues (only one wire) |
| Examples | USB, SATA, Ethernet, HDMI |
In parallel transmission, multiple bits are sent simultaneously along multiple wires.
Sender: [1] →→→ wire 1 →→→ Receiver
[0] →→→ wire 2 →→→
[1] →→→ wire 3 →→→
[1] →→→ wire 4 →→→
... (8 wires for 8 bits at once)
| Feature | Detail |
|---|---|
| Speed | Faster over short distances (multiple bits at once) |
| Distance | Unsuitable for long distances — timing issues |
| Cost | Higher — more wires needed |
| Skew | Bits may arrive at different times (data skew) due to slight differences in wire length or signal propagation |
| Examples | Internal computer buses, old printer cables (parallel port) |
Despite parallel sending more bits at once, serial has become dominant for external connections because:
| Mode | Description | Data Direction | Example |
|---|---|---|---|
| Simplex | Data flows in one direction only | A -> B (never B -> A) | TV broadcast, keyboard to computer |
| Half-duplex | Data flows in both directions, but not at the same time | A -> B or B -> A (one at a time) | Walkie-talkies, CB radio |
| Full-duplex | Data flows in both directions simultaneously | A <-> B (at the same time) | Telephone call, modern Ethernet |
| Feature | Simplex | Half-Duplex | Full-Duplex |
|---|---|---|---|
| Direction | One-way | Two-way (alternating) | Two-way (simultaneous) |
| Bandwidth usage | Full in one direction | Shared between directions | Full in both directions |
| Complexity | Simplest | Moderate | Most complex |
| Cost | Lowest | Moderate | Highest |
In synchronous transmission, data is sent in a continuous stream, with the sender and receiver synchronised by a shared clock signal.
| Feature | Detail |
|---|---|
| Clock | A shared clock signal keeps sender and receiver in sync |
| Data format | Continuous blocks of data without start/stop bits |
| Efficiency | High — no overhead per character |
| Speed | Faster for large data transfers |
| Example | SPI bus, Ethernet, high-speed data links |
In asynchronous transmission, data is sent character by character, with start and stop bits framing each character. There is no shared clock.
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.