📁 Paper 2 · 3.5 Computer Networks
3.5b Network Hardware & Packet Switching
AQA 8525 · GCSE Computer Science · ~10 min read
Notes
──
Video
──
Worksheet
──
Quiz

Network Hardware Components

Networks are built from physical hardware devices that connect, direct, and transmit data. Understanding each device's role is essential for AQA.

🔌
Every device

NIC — Network Interface Card

Hardware component installed in every device that connects to a network. Gives the device a unique MAC address. Can be wired (Ethernet port) or wireless (Wi-Fi chip). Modern computers have NICs built into the motherboard.

🌐
Between networks

Router

Connects different networks together (e.g. your home LAN to the internet/WAN). Routes data packets to their destination using IP addresses. Usually assigns IP addresses to devices on the local network (DHCP). Home routers combine router + switch + Wi-Fi access point + modem.

🔀
Within a LAN

Switch

Connects devices within a LAN. Sends data packets only to the intended device using MAC addresses — much more efficient than a hub. Maintains a MAC address table to know which device is on which port. Standard equipment in modern LANs.

📡
Wireless access

Wireless Access Point (WAP)

Allows wireless devices to connect to a wired network. Extends Wi-Fi coverage in a building. Usually connected to a switch via Ethernet cable. A home router typically has a built-in WAP.

〰️
Signal conversion

Modem

MOdulator-DEModulator — converts digital signals from the computer to analogue signals (for telephone lines) and vice versa. Required for broadband connections over telephone lines (ADSL). Modern home "routers" are usually combined modem + router + switch + WAP units.

⚠️
Legacy device

Hub

Older, simpler device that connects devices in a LAN. Broadcasts ALL incoming data to every connected device, regardless of destination. Inefficient (all devices process all traffic), slow (collisions), and insecure (all devices can see all data). Replaced by switches in modern networks.

Hub vs Switch

FeatureHubSwitch
How data is sentBroadcasts to ALL devicesSends only to intended device (by MAC address)
EfficiencyInefficient — wastes bandwidthEfficient — reduces unnecessary traffic
SecurityInsecure — all devices see all trafficMore secure — only intended device sees data
CollisionsMany collisions (all share same bandwidth)Rare — each port has dedicated connection
Used today?Rarely — legacy deviceYes — standard in all modern LANs

MAC Address vs IP Address

MAC Address

A4:C3:F0:85:AC:2D

Permanent hardware address burned into the NIC. 48 bits (12 hex digits). Unique worldwide. Used within a local network (switches use MAC addresses). Cannot change (in theory — can be spoofed).

IP Address

192.168.1.105

Logical address assigned by the network (by a router via DHCP). Can change each time you connect. Used to route data between networks. IPv4 = 32-bit (four groups of 0–255). IPv6 = 128-bit (much larger address space).

Packet Switching

Data sent across a network is divided into small chunks called packets. This method of transmission is called packet switching.

Each packet contains:

┌──────────────────────────────────────────────────────┐
HEADER
Source IP: 192.168.1.5
Destination IP: 142.250.185.46
Packet number: 3 of 12
Protocol: TCP
├──────────────────────────────────────────────────────┤
DATA PAYLOAD
[actual piece of the message/file]
└──────────────────────────────────────────────────────┘

Packets from the same message may travel by different routes through the internet and arrive out of order. The receiving device reassembles them in the correct order using the packet numbers. This is managed by the TCP protocol.

Advantages of packet switching: if one route is congested or broken, packets can take alternative routes; efficient use of network bandwidth; multiple communications share the same physical lines.

Transmission Media

TypeDescriptionSpeedNotes
Ethernet (copper)Twisted-pair copper cable (Cat5/Cat6). Most common LAN cabling.Up to 10 GbpsAffected by electrical interference; range limited (~100m)
Fibre-opticPulses of light through glass/plastic fibre. Used in broadband and WAN backbones.Hundreds of GbpsFastest; immune to electrical interference; expensive; long range
Wi-Fi (radio waves)Radio waves; 2.4 GHz or 5 GHz bands. Standard for wireless LANs.Up to ~9.6 Gbps (Wi-Fi 6)Convenient; susceptible to interference; range limited; less secure
Exam tip: Know the key difference between a hub (broadcasts to all) and a switch (sends to intended device only). Know what a router does (connects networks, routes by IP address). Know what is in a packet header (source/destination IP, packet number). Know MAC = hardware/permanent; IP = logical/changes.
⚠️ Common Mistakes
  • Confusing hub and switch — a hub broadcasts to ALL devices; a switch sends only to the intended device
  • Confusing router and switch — a switch works WITHIN a LAN (MAC addresses); a router connects DIFFERENT networks (IP addresses)
  • Saying IP address is permanent — it is NOT; it can change. MAC address is permanent (burned into NIC)
Video coming soon

Key points

  • NIC: hardware in every device, provides MAC address; Router: connects networks (uses IP); Switch: directs data to correct device in LAN (uses MAC)
  • Hub: broadcasts to all (old, inefficient, insecure); Switch: sends only to target (modern, efficient)
  • MAC address: permanent, hardware, 12 hex digits; IP address: logical, assigned by router, changes
  • Packet switching: data split into packets with header (source IP, destination IP, packet number); packets can take different routes; reassembled at destination
Click slide or press arrow keys to navigate
✍️

Worksheet — 3.5b Network Hardware

8 questions · 20 marks

Q1What is the function of a NIC (Network Interface Card)?[2]
✅ Mark scheme
Mark scheme
The NIC is a hardware component that connects a device to a network [1]; it gives the device a unique MAC address and handles the physical transmission and reception of data [1].
Q2Describe the difference between a hub and a switch.[3]
✅ Mark scheme
Mark scheme
A hub broadcasts all incoming data to every device on the network [1]; a switch sends data only to the intended device using the MAC address [1]; this makes a switch more efficient, more secure, and produces fewer collisions than a hub [1].
Q3What is the role of a router in a network?[2]
✅ Mark scheme
Mark scheme
A router connects different networks together (e.g. a home LAN to the internet) [1]; it routes data packets to their destination using IP addresses [1]. (Also accept: assigns IP addresses via DHCP)
Q4Explain the difference between a MAC address and an IP address.[3]
✅ Mark scheme
Mark scheme
A MAC address is a permanent physical address burned into the NIC hardware (unique per device, 12 hex digits) [1]; an IP address is a logical address assigned by the network/router (can change each time a device connects) [1]; MAC addresses are used within a local network; IP addresses are used to route data between different networks [1].
Q5What is packet switching? Describe what is contained in a packet header.[4]
✅ Mark scheme
Mark scheme
Packet switching: data is broken into small chunks called packets before being transmitted across a network [1]; each packet can take a different route through the network and is reassembled at the destination [1]; packet header contains: source IP address [1]; destination IP address, packet number (to reassemble in order), total number of packets, protocol type [1].
Q6Give two advantages of using fibre-optic cable over copper Ethernet cable for network connections.[2]
✅ Mark scheme
Mark scheme
Any two: much faster data transfer speeds [1]; not susceptible to electrical interference [1]; can transmit over much longer distances without signal degradation [1].
Q7Explain why packet switching allows more efficient use of a network than sending data as one continuous stream.[2]
✅ Mark scheme
Mark scheme
Multiple packets from different senders can share the same network links simultaneously [1]; if one route is congested, packets can take alternative routes — a single continuous stream would have to wait for the blocked route to clear [1].
Q8A school IT technician is setting up a new computer lab. They need to connect 30 computers to the school network. Which device should they use to connect all 30 computers, and why?[2]
✅ Mark scheme
Mark scheme
A switch should be used [1]; because a switch sends data only to the intended device using MAC addresses, making it more efficient and secure than a hub — with 30 computers, broadcasting traffic to all devices (as a hub would) would severely reduce network performance [1].
Check your answers above.
Topic Quiz
Q 1 of 10
You scored
out of 10
Card 1 of 7
Click to flip
🎉
All done!
TermDefinition
🎯

Mini Test — 3.5b Network Hardware

Timed exam conditions.

  • 8 questions · 10 minutes
  • 5 MCQ + 3 short answer
← 3.5a Network Types
43 of 57 · AQA 8525
3.5c Network Protocols →