Skip to main content
WalesComputer ScienceSyllabus dot point

How is data transmitted reliably across networks, and how do protocols, layers and network security work in depth?

Describe data transmission methods, packet switching, the layered protocol model, network hardware, and network security in depth.

A focused answer to WJEC A-Level Computer Science Unit 3 data transmission and networks, covering serial and parallel transmission, packet switching, the layered protocol model, network hardware, and network security.

Generated by Claude Opus 4.813 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. The answer
  3. Examples in context
  4. Try this

What this dot point is asking

WJEC wants you to describe data transmission in depth: serial and parallel methods, packet switching, the layered protocol model, the hardware that builds networks, and network security. This extends the AS communication topic to the more detailed A2 treatment in Unit 3. Expect questions on serial versus parallel, on why protocols are layered, and on network security measures, all rewarding precise technical explanation.

The answer

Serial and parallel transmission

This is why modern external interfaces such as USB are serial: reliability and low cabling cost over distance outweigh the short-range speed of parallel.

Packet switching revisited

In packet switching, a message is divided into packets, each carrying source and destination addresses and a sequence number. Packets are routed independently across the network, possibly by different routes, and reassembled in order at the destination. This shares links efficiently and reroutes around failures, giving resilience.

The layered protocol model

Layering is the key idea that lets the internet work across countless different technologies: each layer only has to agree an interface with its neighbours, not with the whole system.

Network hardware and security

Network security protects data in transit and at rest using firewalls (filtering traffic), encryption (unreadable to interceptors), authentication (verifying identity) and access control (limiting permissions).

Examples in context

Example 1. Why USB replaced the parallel printer port
Old printers used a parallel port with many wires; modern ones use USB, which is serial. Over the length of a cable, parallel's skew and cost became liabilities while serial signalling at high clock rates proved both reliable and cheap, a concrete case of serial winning over distance.
Example 2. Layering lets Wi-Fi and fibre coexist
A web request travels over home Wi-Fi, then fibre, then the recipient's network, yet the application using TCP never changes. The link layer differs at each hop, but because the layers agree only on their interfaces, the higher layers are unaffected, which is exactly the modular independence layering provides.
Example 3. A firewall plus encryption together
A company firewall blocks unauthorised incoming connections, while encryption protects the data that legitimately leaves. One controls who may connect; the other protects the content if it is intercepted. Using both shows defence in depth, the principle that no single network-security measure is sufficient alone.

Try this

Q1. State one reason serial transmission is preferred over parallel for long distances. [1 mark]

  • Cue. Parallel suffers skew (bits arriving at different times) over distance, and needs more, costlier cabling; serial avoids this.

Q2. State the network device used to forward packets between two different networks. [1 mark]

  • Cue. A router.

Exam-style practice questions

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

WJEC 20204 marksExplain the difference between serial and parallel data transmission, and state why serial is generally preferred over long distances.
Show worked answer →

Contrast the two methods, then explain the long-distance advantage of serial.

In serial transmission, bits are sent one after another along a single channel. In parallel transmission, several bits are sent simultaneously along multiple channels (wires).

Serial is generally preferred over long distances because parallel transmission suffers from skew: the bits on different wires arrive at slightly different times over distance, corrupting the data, and parallel cabling is more expensive. Serial avoids skew and needs fewer conductors, so it is reliable and cheaper over distance, which is why standards such as USB are serial.

Markers reward the one-channel-at-a-time versus several-bits-at-once distinction, and a valid reason for serial over distance such as avoiding skew or lower cabling cost.

WJEC 20224 marksExplain the purpose of organising network protocols into layers, using an example of a layer's role.
Show worked answer →

State the benefit of layering, then illustrate with one layer.

Protocols are organised into layers so that each layer handles one aspect of communication and provides services to the layer above, hiding the detail below. This makes the system modular: a layer can be changed or replaced without affecting the others, provided the interface between layers is unchanged, and it simplifies design and troubleshooting.

For example, the network layer (IP) handles addressing and routing of packets between machines, while the transport layer (TCP) above it provides reliable, ordered delivery. The application using TCP need not know how IP routes packets.

Markers reward the point that layering separates concerns so layers can change independently, plus a correct example of a layer's role.

Related dot points

Sources & how we know this