Network Topologies — AQA GCSE study guide illustration

    Network Topologies

    Master AQA GCSE Network Topologies (4.1) by understanding the critical differences between Star and Mesh layouts. This guide breaks down how each topology works, their real-world applications, and exactly what examiners are looking for to award you maximum marks.

    5
    Min Read
    3
    Examples
    5
    Questions
    6
    Key Terms
    🎙 Podcast Episode
    Network Topologies
    0:00-0:00

    Study Notes

    Header image for Network Topologies

    Overview

    Welcome to the essential guide for Network Topologies, a core component of the AQA GCSE Computer Science specification (4.1). This topic explores how the physical layout of a network—its topology—fundamentally impacts its performance, cost, and reliability. In the exam, you'll be expected to compare and contrast the two key topologies: Star and Mesh. Understanding these isn't just about memorising diagrams; it's about evaluating their trade-offs to justify which is better for a given scenario, like a small office versus a critical hospital system. This guide will equip you with the precise terminology, exam techniques, and conceptual understanding to tackle any question an examiner throws at you, linking directly to network security and performance concepts you'll cover elsewhere.

    Key Concepts

    Concept 1: Star Topology

    A Star topology is the most common layout for Local Area Networks (LANs) found in homes, schools, and small businesses. In this setup, every device (or 'node') on the network is connected to a central device. For your exam, it is crucial to identify this central device as a switch or a hub, not just a 'server'. The switch acts as a central point of communication; when one device wants to send data to another, it sends the data to the switch, which then forwards it to the correct destination device.

    Diagram of a Star Network Topology

    Advantages:

    • Reliability (Device Failure): If one cable or device fails, it does not affect the rest of the network. Only the failed device is isolated.
    • Performance: The switch directs traffic only to the intended recipient, reducing unnecessary data traffic on the network and minimising data collisions.
    • Easy to Manage: Adding or removing devices is simple—you just plug them into or unplug them from the switch. Faults are easy to isolate.

    Disadvantages:

    • Single Point of Failure: This is a high-tariff phrase. The central switch is a single point of failure. If it fails, the entire network goes down.
    • Cost: It requires more cabling than a bus topology, which can increase installation costs.

    Concept 2: Mesh Topology

    A Mesh topology is a more complex setup where devices are interconnected. There are two types: Full Mesh and Partial Mesh. In a Full Mesh network, every single device is connected to every other device. In a Partial Mesh network, only some devices are fully interconnected, typically the most critical ones.

    Diagram of a Full Mesh Network Topology

    Advantages:

    • High Reliability & Redundancy: This is the primary benefit. If one connection or device fails, data can be rerouted through one of the many other available paths. This makes Mesh networks extremely fault-tolerant.
    • No Single Point of Failure: Unlike a Star network, the failure of a single device or connection will not bring down the entire network.

    Disadvantages:

    • Cost & Complexity: The amount of cabling required is very high, making it expensive and complex to install, especially for a Full Mesh.
    • Difficult to Manage: Adding a new device to a Full Mesh network is disruptive as it requires connecting it to every other existing device.

    Mathematical/Scientific Relationships

    For a Full Mesh network, the number of connections (cables) required for 'n' devices can be calculated with a specific formula. You must memorise this.

    Formula: c = n(n-1) / 2

    • c: number of connections (cables)
    • n: number of devices (nodes)

    Example: For a network with 6 devices, the number of cables required would be:
    c = 6 * (6-1) / 2
    c = 6 * 5 / 2
    c = 30 / 2
    c = 15

    So, 15 cables would be needed to create a Full Mesh network with 6 devices.

    Practical Applications

    • Star Topology: The default choice for most modern LANs. Your school or college network is almost certainly a Star topology. It provides a good balance of performance, cost, and manageability for a typical environment.
    • Mesh Topology: Used in critical systems where reliability is paramount and cost is a secondary concern. Examples include:
      • Hospitals: Patient monitoring systems cannot afford to go down.
      • Military & Government: Secure and resilient communication is essential.
      • The Internet Backbone: The core routers of the internet form a massive Mesh network to ensure data can always find a path.

    Worked Examples

    3 detailed examples with solutions and examiner commentary

    Practice Questions

    Test your understanding — click to reveal model answers

    Q1

    State the name of the topology where every device is connected to a central switch.

    1 marks
    foundation

    Hint: Think of the shape the connections make.

    Q2

    Describe two advantages of a Star topology. [4 marks]

    4 marks
    standard

    Hint: Think about what happens when something breaks, and how easy it is to add new devices.

    Q3

    Explain why a Mesh topology is often used for the backbone of the internet. [3 marks]

    3 marks
    challenging

    Hint: The internet cannot be allowed to go down. How does Mesh prevent this?

    Q4

    A small business has 10 computers. Compare the cost and reliability of setting up their office network using a Star versus a Full Mesh topology. [4 marks]

    4 marks
    standard

    Hint: Use comparative words like 'cheaper' or 'more reliable'.

    Q5

    A new military command centre is being designed. Evaluate the suitability of a Star topology for its core network. [5 marks]

    5 marks
    challenging

    Hint: Think about the consequences of network failure in a military context.

    Key Terms

    Essential vocabulary to know

    More Computer Science Study Guides

    View all

    Problem Decomposition

    Edexcel
    GCSE

    Master Problem Decomposition for your Edexcel GCSE Computer Science exam. This guide breaks down how to deconstruct complex problems into simple, manageable parts—a core skill for top marks in computational thinking and a fundamental concept for all future programming.

    Programming Fundamentals

    Edexcel
    GCSE

    Master the core of programming for your Edexcel GCSE Computer Science exam. This guide breaks down variables, control structures, and data types into easy-to-understand concepts, focusing on the practical Python skills needed to excel in Paper 2.

    Algorithms

    OCR
    A-Level

    Master OCR A-Level Computer Science Algorithms (2.1) with this comprehensive guide. We'll break down algorithm analysis using Big O notation, explore standard sorting and searching algorithms, and demystify pathfinding with Dijkstra's and A*. This guide is packed with exam-focused advice, worked examples, and memory hooks to help you secure top marks.

    Data representation

    OCR
    GCSE

    This guide demystifies how computers represent everything from numbers to images and sound using only binary. Master the core concepts of data representation for your OCR GCSE Computer Science exam and learn how to secure top marks with examiner insights and multi-modal resources.

    Programming fundamentals

    Edexcel
    GCSE

    Master the core of coding for your Edexcel GCSE Computer Science exam. This guide breaks down Programming Fundamentals (2.2), showing you how to write, debug, and perfect Python code for sequence, selection, and iteration to secure top marks in your Paper 2 onscreen exam.

    Sequence

    AQA
    GCSE

    Master the fundamental programming concept of Sequence for your AQA GCSE Computer Science exam. This guide breaks down how code executes line-by-line, why order is critical for marks, and how to ace trace table and algorithm questions.