Skip to main content
Northern IrelandDigital TechnologySyllabus dot point

What rules govern network communication, how is data carried, and how are errors detected?

Network protocols and the role of TCP/IP, transmission media (wired and wireless), and error detection and correction techniques such as parity, checksum and the check digit.

A CCEA A-Level Digital Technology answer on network protocols and TCP/IP, wired and wireless transmission media, and error detection and correction techniques including parity, checksums and check digits.

Generated by Claude Opus 4.811 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. Network protocols and TCP/IP
  3. Transmission media
  4. Error detection and correction
  5. Why this matters
  6. Try this

What this dot point is asking

CCEA wants you to explain what a network protocol is and the role of TCP/IP, to describe wired and wireless transmission media, and to describe error detection and correction techniques such as parity, checksums and check digits. These are the rules and methods that make networked communication reliable.

Network protocols and TCP/IP

Protocols matter because networked devices come from many manufacturers and run different software, yet must communicate reliably. A shared protocol means both ends agree on how data is packaged and checked, so the receiver can understand it. Other common protocols include HTTP/HTTPS (web pages, with HTTPS encrypted) and SMTP (email).

Transmission media

The choice trades speed, distance, cost, security and mobility. Fibre optic is chosen for backbones and long high-speed links; twisted pair for ordinary office cabling; Wi-Fi where mobility matters and cabling is impractical.

Error detection and correction

Transmission can corrupt data (a bit may flip), so techniques check integrity:

  • Parity check. An extra parity bit makes the number of 1s even (even parity) or odd (odd parity). The receiver recounts; a mismatch means an error. It detects an odd number of bit errors but misses an even number, and cannot correct.
  • Checksum. A value is calculated from a block of data and sent with it; the receiver recalculates and compares. A difference signals an error in the block.
  • Check digit. An extra digit calculated from the others (as on barcodes and bank account numbers) detects errors when data is entered or read.
  • Echo / automatic repeat request. On detecting an error, the receiver asks the sender to re-transmit the data, which is how most detection schemes recover.

Why this matters

Reliable communication needs both agreed rules (protocols) and integrity checks (error detection). Together they let data cross unreliable links and arrive intact, which every networked information system, including databases and cloud services, depends on.

Try this

Q1. Name the transmission medium that is immune to electrical interference and used for fast, long-distance links. [1 mark]

  • Cue. Fibre optic cable.

Q2. State the role of TCP within the TCP/IP suite. [1 mark]

  • Cue. TCP splits data into packets, ensures they all arrive, and reassembles them in the correct order.

Q3. Explain one limitation of a single parity bit for error detection. [2 marks]

  • Cue. It only reliably detects an odd number of bit errors; if an even number of bits flip the parity appears correct and the error goes undetected, and it cannot correct an error, only flag it.

Exam-style practice questions

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

CCEA A2 14 marksExplain what is meant by a network protocol and why protocols are necessary.
Show worked answer →

Define a protocol, then explain the need for agreed rules.

A network protocol is an agreed set of rules that governs how data is formatted, transmitted and received between devices on a network. Examples include TCP/IP, HTTP and HTTPS.

Protocols are necessary because devices may be made by different manufacturers and run different software, yet they must communicate reliably. A shared protocol means both ends agree on how data is packaged, addressed, sent, acknowledged and checked for errors, so the data arrives in a form the receiver can understand. Without protocols, devices could not interoperate.

Markers reward the definition (an agreed set of rules for communication), an example, and the point that protocols let different devices interoperate reliably. A vague "they help computers talk" without the rules and interoperability points limits the marks.

CCEA A2 15 marksDescribe how a parity check detects an error in transmitted data, and state one limitation.
Show worked answer →

Explain the extra bit, the rule, and the detection, then the weakness.

A parity check adds one extra bit (the parity bit) to each unit of data. Using even parity, the parity bit is set so that the total number of 1s, including the parity bit, is even (odd parity makes it odd). The sender calculates and adds the bit; the receiver counts the 1s. If the count no longer matches the agreed parity (for example it is odd under even parity), at least one bit has changed, so an error is detected.

Limitation: a single parity bit only reliably detects an odd number of bit errors. If two bits flip, the parity appears correct again and the error goes undetected. It also detects but cannot correct an error; the data must be re-sent.

Markers reward the parity-bit rule, the receiver recount and mismatch, and the limitation that an even number of errors escapes detection (and that it cannot correct).

Related dot points

Sources & how we know this