Computer systems might seem complex, but they're actually quite logical... Show more
Sign up to see the contentIt's free!
Access to all documents
Improve your grades
Join milions of students
Knowunity AI
Subjects
Triangle Congruence and Similarity Theorems
Triangle Properties and Classification
Linear Equations and Graphs
Geometric Angle Relationships
Trigonometric Functions and Identities
Equation Solving Techniques
Circle Geometry Fundamentals
Division Operations and Methods
Basic Differentiation Rules
Exponent and Logarithm Properties
Show all topics
Human Organ Systems
Reproductive Cell Cycles
Biological Sciences Subdisciplines
Cellular Energy Metabolism
Autotrophic Energy Processes
Inheritance Patterns and Principles
Biomolecular Structure and Organization
Cell Cycle and Division Mechanics
Cellular Organization and Development
Biological Structural Organization
Show all topics
Chemical Sciences and Applications
Atomic Structure and Composition
Molecular Electron Structure Representation
Atomic Electron Behavior
Matter Properties and Water
Mole Concept and Calculations
Gas Laws and Behavior
Periodic Table Organization
Chemical Thermodynamics Fundamentals
Chemical Bond Types and Properties
Show all topics
European Renaissance and Enlightenment
European Cultural Movements 800-1920
American Revolution Era 1763-1797
American Civil War 1861-1865
Global Imperial Systems
Mongol and Chinese Dynasties
U.S. Presidents and World Leaders
Historical Sources and Documentation
World Wars Era and Impact
World Religious Systems
Show all topics
Classic and Contemporary Novels
Literary Character Analysis
Rhetorical Theory and Practice
Classic Literary Narratives
Reading Analysis and Interpretation
Narrative Structure and Techniques
English Language Components
Influential English-Language Authors
Basic Sentence Structure
Narrative Voice and Perspective
Show all topics
303
•
Updated Mar 22, 2026
•
Sir
@sirname
Computer systems might seem complex, but they're actually quite logical... Show more











This is your introduction to the fundamental concepts you'll need to master for GCSE Computer Science. We're covering CPU architecture, memory systems, and data storage - the building blocks of every computer you use.
Understanding these concepts will help you tackle exam questions confidently and give you a solid foundation for more advanced computing topics.
Quick Tip: These notes focus on the most important points for your exam, so you can revise efficiently without getting bogged down in unnecessary detail.

Your CPU is basically the brain of your computer, and it follows a simple three-step process called the fetch-decode-execute cycle. First, it fetches instructions from memory (RAM), then decodes what needs to be done, and finally executes the instruction by doing calculations or storing information.
The CPU contains several key components that work together. The Arithmetic Logic Unit (ALU) handles all mathematical operations like addition, subtraction, and logical operations like AND and OR. The Control Unit acts like a conductor, coordinating all CPU activities and sending control signals to synchronise data movement.
Cache memory stores your most frequently used instructions right inside the CPU, which makes accessing them much faster than going all the way to RAM. Registers are tiny memory locations within the CPU that hold specific pieces of data temporarily - think of them as the CPU's scratchpad.
Remember: The fetch-decode-execute cycle repeats constantly while your computer is running, millions of times per second!

Von Neumann architecture describes how most computers are designed - with data and instructions stored together in the same memory area. This might seem obvious, but it's actually a specific design choice that makes computers more flexible.
Four crucial registers make this architecture work smoothly. The Memory Address Register (MAR) stores the address of where data needs to be fetched from or stored to. The Memory Data Register (MDR) holds the actual data being transferred to or from memory.
The Program Counter keeps track of which instruction comes next by storing its memory address - it automatically increments by 1 after each instruction. Finally, the Accumulator stores the results of calculations performed by the ALU.
Exam Tip: Learn these four registers well - they're frequently tested and understanding them helps explain how the fetch-decode-execute cycle actually works.

Three main factors determine how fast your CPU can process information. Clock speed, measured in hertz (Hz), determines how many instructions your CPU can execute per second - modern CPUs typically run at around 4GHz, meaning 4 billion instructions per second!
Cache size significantly impacts performance because accessing cache memory is much faster than accessing main memory (RAM). The more data that can be stored in cache rather than RAM, the more efficient your system becomes. However, cache memory is expensive, so there's always a trade-off.
Multiple processor cores allow your CPU to handle several instructions simultaneously, like having multiple workers instead of just one. However, this only helps if your software is specifically designed to take advantage of multiple cores - otherwise, those extra cores just sit idle.
Real-world Connection: This is why a newer CPU with fewer cores but higher clock speed might feel faster for everyday tasks than an older CPU with more cores.

Embedded systems are specialised computers designed to perform one specific job really well. Unlike your laptop or phone, they're built for a single purpose and can't run different software.
These systems are typically manufactured as a single chip, making them incredibly robust and reliable compared to general-purpose computers. They're designed to be small, consume minimal power, and operate at low cost whilst being highly efficient at their specific task.
You'll find embedded systems everywhere in daily life - washing machines, microwaves, car engines, home security systems, and even smart TVs all contain embedded systems. They're so common that you probably interact with dozens of them every day without realising it.
Think About It: Your smartphone contains multiple embedded systems working alongside the main processor - the camera, GPS, and wireless chips all have their own embedded systems.

Understanding different types of memory and storage is crucial for grasping how computers manage information. We'll explore primary storage (RAM and ROM) and secondary storage options, plus how computers measure and handle data.
This section covers essential concepts for your exam, including virtual memory, storage technologies, and data representation methods.

RAM (Random Access Memory) is your computer's working space - it holds the operating system, running applications, and their data while you're using them. However, RAM is volatile, meaning everything disappears when you turn off the power. It's fast, can be read from and written to, but only works temporarily.
ROM stores essential startup instructions (the BIOS) that your computer needs to boot up. Unlike RAM, ROM is non-volatile - it keeps its data even when powered off. You can only read from ROM during normal operation, not write to it.
When you run out of RAM, your computer uses virtual memory - basically borrowing space from your hard drive to extend RAM. This works but slows things down significantly because transferring data between RAM and storage is much slower than keeping everything in RAM.
Performance Tip: Adding more RAM reduces the need for virtual memory, which directly improves your computer's speed and responsiveness.

Secondary storage provides permanent, non-volatile storage for your files and programs. You need storage that's reliable, high-capacity, and cost-effective.
Magnetic storage (like traditional hard disk drives) uses spinning magnetic disks with moving read/write heads. They're reliable, cost-effective, and offer high capacity at low prices, but they're not very portable due to their moving parts.
Solid-state storage uses flash memory with no moving parts, making it faster, more robust, and power-efficient than magnetic storage. SSDs are perfect for portable devices but cost more per gigabyte and typically offer smaller capacities than traditional hard drives.
Optical storage uses laser light to read data from rotating discs. They're portable and good for distributing media, but easily damaged by scratches and have limited storage capacity compared to other technologies.
Choosing Storage: SSDs are becoming the standard for speed-critical applications, while traditional hard drives remain popular for bulk storage where cost matters more than speed.

Computers use binary (0s and 1s) because they work with switches that are either on or off. Understanding data units helps you calculate storage requirements and compare different systems.
The hierarchy goes: 4 bits = 1 nibble, 8 bits = 1 byte, then 1000 bytes = 1 kilobyte (KB), 1000KB = 1 megabyte (MB), 1000MB = 1 gigabyte (GB), and so on up to terabytes and petabytes.
You can calculate file sizes using these formulas: sound file size = sample rate × duration × bit depth, image file size = colour depth × height × width, and text file size = bits per character × number of characters.
Exam Success: Learn these formulas by heart - they appear frequently in exam questions and are straightforward marks if you know them.

Our AI Companion is a student-focused AI tool that offers more than just answers. Built on millions of Knowunity resources, it provides relevant information, personalised study plans, quizzes, and content directly in the chat, adapting to your individual learning journey.
You can download the app from Google Play Store and Apple App Store.
That's right! Enjoy free access to study content, connect with fellow students, and get instant help – all at your fingertips.
App Store
Google Play
The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.
Stefan S
iOS user
This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.
Samantha Klich
Android user
Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.
Anna
iOS user
Best app on earth! no words because it’s too good
Thomas R
iOS user
Just amazing. Let's me revise 10x better, this app is a quick 10/10. I highly recommend it to anyone. I can watch and search for notes. I can save them in the subject folder. I can revise it any time when I come back. If you haven't tried this app, you're really missing out.
Basil
Android user
This app has made me feel so much more confident in my exam prep, not only through boosting my own self confidence through the features that allow you to connect with others and feel less alone, but also through the way the app itself is centred around making you feel better. It is easy to navigate, fun to use, and helpful to anyone struggling in absolutely any way.
David K
iOS user
The app's just great! All I have to do is enter the topic in the search bar and I get the response real fast. I don't have to watch 10 YouTube videos to understand something, so I'm saving my time. Highly recommended!
Sudenaz Ocak
Android user
In school I was really bad at maths but thanks to the app, I am doing better now. I am so grateful that you made the app.
Greenlight Bonnie
Android user
very reliable app to help and grow your ideas of Maths, English and other related topics in your works. please use this app if your struggling in areas, this app is key for that. wish I'd of done a review before. and it's also free so don't worry about that.
Rohan U
Android user
I know a lot of apps use fake accounts to boost their reviews but this app deserves it all. Originally I was getting 4 in my English exams and this time I got a grade 7. I didn’t even know about this app three days until the exam and it has helped A LOT. Please actually trust me and use it as I’m sure you too will see developments.
Xander S
iOS user
THE QUIZES AND FLASHCARDS ARE SO USEFUL AND I LOVE Knowunity AI. IT ALSO IS LITREALLY LIKE CHATGPT BUT SMARTER!! HELPED ME WITH MY MASCARA PROBLEMS TOO!! AS WELL AS MY REAL SUBJECTS ! DUHHH 😍😁😲🤑💗✨🎀😮
Elisha
iOS user
This apps acc the goat. I find revision so boring but this app makes it so easy to organize it all and then you can ask the freeeee ai to test yourself so good and you can easily upload your own stuff. highly recommend as someone taking mocks now
Paul T
iOS user
The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.
Stefan S
iOS user
This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.
Samantha Klich
Android user
Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.
Anna
iOS user
Best app on earth! no words because it’s too good
Thomas R
iOS user
Just amazing. Let's me revise 10x better, this app is a quick 10/10. I highly recommend it to anyone. I can watch and search for notes. I can save them in the subject folder. I can revise it any time when I come back. If you haven't tried this app, you're really missing out.
Basil
Android user
This app has made me feel so much more confident in my exam prep, not only through boosting my own self confidence through the features that allow you to connect with others and feel less alone, but also through the way the app itself is centred around making you feel better. It is easy to navigate, fun to use, and helpful to anyone struggling in absolutely any way.
David K
iOS user
The app's just great! All I have to do is enter the topic in the search bar and I get the response real fast. I don't have to watch 10 YouTube videos to understand something, so I'm saving my time. Highly recommended!
Sudenaz Ocak
Android user
In school I was really bad at maths but thanks to the app, I am doing better now. I am so grateful that you made the app.
Greenlight Bonnie
Android user
very reliable app to help and grow your ideas of Maths, English and other related topics in your works. please use this app if your struggling in areas, this app is key for that. wish I'd of done a review before. and it's also free so don't worry about that.
Rohan U
Android user
I know a lot of apps use fake accounts to boost their reviews but this app deserves it all. Originally I was getting 4 in my English exams and this time I got a grade 7. I didn’t even know about this app three days until the exam and it has helped A LOT. Please actually trust me and use it as I’m sure you too will see developments.
Xander S
iOS user
THE QUIZES AND FLASHCARDS ARE SO USEFUL AND I LOVE Knowunity AI. IT ALSO IS LITREALLY LIKE CHATGPT BUT SMARTER!! HELPED ME WITH MY MASCARA PROBLEMS TOO!! AS WELL AS MY REAL SUBJECTS ! DUHHH 😍😁😲🤑💗✨🎀😮
Elisha
iOS user
This apps acc the goat. I find revision so boring but this app makes it so easy to organize it all and then you can ask the freeeee ai to test yourself so good and you can easily upload your own stuff. highly recommend as someone taking mocks now
Paul T
iOS user
Sir
@sirname
Computer systems might seem complex, but they're actually quite logical once you understand the basics. This guide covers the essential components of CPU architecture, memory systems, and data storage - all key topics for your GCSE Computer Science exam.

Access to all documents
Improve your grades
Join milions of students
This is your introduction to the fundamental concepts you'll need to master for GCSE Computer Science. We're covering CPU architecture, memory systems, and data storage - the building blocks of every computer you use.
Understanding these concepts will help you tackle exam questions confidently and give you a solid foundation for more advanced computing topics.
Quick Tip: These notes focus on the most important points for your exam, so you can revise efficiently without getting bogged down in unnecessary detail.

Access to all documents
Improve your grades
Join milions of students
Your CPU is basically the brain of your computer, and it follows a simple three-step process called the fetch-decode-execute cycle. First, it fetches instructions from memory (RAM), then decodes what needs to be done, and finally executes the instruction by doing calculations or storing information.
The CPU contains several key components that work together. The Arithmetic Logic Unit (ALU) handles all mathematical operations like addition, subtraction, and logical operations like AND and OR. The Control Unit acts like a conductor, coordinating all CPU activities and sending control signals to synchronise data movement.
Cache memory stores your most frequently used instructions right inside the CPU, which makes accessing them much faster than going all the way to RAM. Registers are tiny memory locations within the CPU that hold specific pieces of data temporarily - think of them as the CPU's scratchpad.
Remember: The fetch-decode-execute cycle repeats constantly while your computer is running, millions of times per second!

Access to all documents
Improve your grades
Join milions of students
Von Neumann architecture describes how most computers are designed - with data and instructions stored together in the same memory area. This might seem obvious, but it's actually a specific design choice that makes computers more flexible.
Four crucial registers make this architecture work smoothly. The Memory Address Register (MAR) stores the address of where data needs to be fetched from or stored to. The Memory Data Register (MDR) holds the actual data being transferred to or from memory.
The Program Counter keeps track of which instruction comes next by storing its memory address - it automatically increments by 1 after each instruction. Finally, the Accumulator stores the results of calculations performed by the ALU.
Exam Tip: Learn these four registers well - they're frequently tested and understanding them helps explain how the fetch-decode-execute cycle actually works.

Access to all documents
Improve your grades
Join milions of students
Three main factors determine how fast your CPU can process information. Clock speed, measured in hertz (Hz), determines how many instructions your CPU can execute per second - modern CPUs typically run at around 4GHz, meaning 4 billion instructions per second!
Cache size significantly impacts performance because accessing cache memory is much faster than accessing main memory (RAM). The more data that can be stored in cache rather than RAM, the more efficient your system becomes. However, cache memory is expensive, so there's always a trade-off.
Multiple processor cores allow your CPU to handle several instructions simultaneously, like having multiple workers instead of just one. However, this only helps if your software is specifically designed to take advantage of multiple cores - otherwise, those extra cores just sit idle.
Real-world Connection: This is why a newer CPU with fewer cores but higher clock speed might feel faster for everyday tasks than an older CPU with more cores.

Access to all documents
Improve your grades
Join milions of students
Embedded systems are specialised computers designed to perform one specific job really well. Unlike your laptop or phone, they're built for a single purpose and can't run different software.
These systems are typically manufactured as a single chip, making them incredibly robust and reliable compared to general-purpose computers. They're designed to be small, consume minimal power, and operate at low cost whilst being highly efficient at their specific task.
You'll find embedded systems everywhere in daily life - washing machines, microwaves, car engines, home security systems, and even smart TVs all contain embedded systems. They're so common that you probably interact with dozens of them every day without realising it.
Think About It: Your smartphone contains multiple embedded systems working alongside the main processor - the camera, GPS, and wireless chips all have their own embedded systems.

Access to all documents
Improve your grades
Join milions of students
Understanding different types of memory and storage is crucial for grasping how computers manage information. We'll explore primary storage (RAM and ROM) and secondary storage options, plus how computers measure and handle data.
This section covers essential concepts for your exam, including virtual memory, storage technologies, and data representation methods.

Access to all documents
Improve your grades
Join milions of students
RAM (Random Access Memory) is your computer's working space - it holds the operating system, running applications, and their data while you're using them. However, RAM is volatile, meaning everything disappears when you turn off the power. It's fast, can be read from and written to, but only works temporarily.
ROM stores essential startup instructions (the BIOS) that your computer needs to boot up. Unlike RAM, ROM is non-volatile - it keeps its data even when powered off. You can only read from ROM during normal operation, not write to it.
When you run out of RAM, your computer uses virtual memory - basically borrowing space from your hard drive to extend RAM. This works but slows things down significantly because transferring data between RAM and storage is much slower than keeping everything in RAM.
Performance Tip: Adding more RAM reduces the need for virtual memory, which directly improves your computer's speed and responsiveness.

Access to all documents
Improve your grades
Join milions of students
Secondary storage provides permanent, non-volatile storage for your files and programs. You need storage that's reliable, high-capacity, and cost-effective.
Magnetic storage (like traditional hard disk drives) uses spinning magnetic disks with moving read/write heads. They're reliable, cost-effective, and offer high capacity at low prices, but they're not very portable due to their moving parts.
Solid-state storage uses flash memory with no moving parts, making it faster, more robust, and power-efficient than magnetic storage. SSDs are perfect for portable devices but cost more per gigabyte and typically offer smaller capacities than traditional hard drives.
Optical storage uses laser light to read data from rotating discs. They're portable and good for distributing media, but easily damaged by scratches and have limited storage capacity compared to other technologies.
Choosing Storage: SSDs are becoming the standard for speed-critical applications, while traditional hard drives remain popular for bulk storage where cost matters more than speed.

Access to all documents
Improve your grades
Join milions of students
Computers use binary (0s and 1s) because they work with switches that are either on or off. Understanding data units helps you calculate storage requirements and compare different systems.
The hierarchy goes: 4 bits = 1 nibble, 8 bits = 1 byte, then 1000 bytes = 1 kilobyte (KB), 1000KB = 1 megabyte (MB), 1000MB = 1 gigabyte (GB), and so on up to terabytes and petabytes.
You can calculate file sizes using these formulas: sound file size = sample rate × duration × bit depth, image file size = colour depth × height × width, and text file size = bits per character × number of characters.
Exam Success: Learn these formulas by heart - they appear frequently in exam questions and are straightforward marks if you know them.

Access to all documents
Improve your grades
Join milions of students
Our AI Companion is a student-focused AI tool that offers more than just answers. Built on millions of Knowunity resources, it provides relevant information, personalised study plans, quizzes, and content directly in the chat, adapting to your individual learning journey.
You can download the app from Google Play Store and Apple App Store.
That's right! Enjoy free access to study content, connect with fellow students, and get instant help – all at your fingertips.
5
Smart Tools NEW
Transform this note into: ✓ 50+ Practice Questions ✓ Interactive Flashcards ✓ Full Mock Exam ✓ Essay Outlines
App Store
Google Play
The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.
Stefan S
iOS user
This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.
Samantha Klich
Android user
Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.
Anna
iOS user
Best app on earth! no words because it’s too good
Thomas R
iOS user
Just amazing. Let's me revise 10x better, this app is a quick 10/10. I highly recommend it to anyone. I can watch and search for notes. I can save them in the subject folder. I can revise it any time when I come back. If you haven't tried this app, you're really missing out.
Basil
Android user
This app has made me feel so much more confident in my exam prep, not only through boosting my own self confidence through the features that allow you to connect with others and feel less alone, but also through the way the app itself is centred around making you feel better. It is easy to navigate, fun to use, and helpful to anyone struggling in absolutely any way.
David K
iOS user
The app's just great! All I have to do is enter the topic in the search bar and I get the response real fast. I don't have to watch 10 YouTube videos to understand something, so I'm saving my time. Highly recommended!
Sudenaz Ocak
Android user
In school I was really bad at maths but thanks to the app, I am doing better now. I am so grateful that you made the app.
Greenlight Bonnie
Android user
very reliable app to help and grow your ideas of Maths, English and other related topics in your works. please use this app if your struggling in areas, this app is key for that. wish I'd of done a review before. and it's also free so don't worry about that.
Rohan U
Android user
I know a lot of apps use fake accounts to boost their reviews but this app deserves it all. Originally I was getting 4 in my English exams and this time I got a grade 7. I didn’t even know about this app three days until the exam and it has helped A LOT. Please actually trust me and use it as I’m sure you too will see developments.
Xander S
iOS user
THE QUIZES AND FLASHCARDS ARE SO USEFUL AND I LOVE Knowunity AI. IT ALSO IS LITREALLY LIKE CHATGPT BUT SMARTER!! HELPED ME WITH MY MASCARA PROBLEMS TOO!! AS WELL AS MY REAL SUBJECTS ! DUHHH 😍😁😲🤑💗✨🎀😮
Elisha
iOS user
This apps acc the goat. I find revision so boring but this app makes it so easy to organize it all and then you can ask the freeeee ai to test yourself so good and you can easily upload your own stuff. highly recommend as someone taking mocks now
Paul T
iOS user
The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.
Stefan S
iOS user
This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.
Samantha Klich
Android user
Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.
Anna
iOS user
Best app on earth! no words because it’s too good
Thomas R
iOS user
Just amazing. Let's me revise 10x better, this app is a quick 10/10. I highly recommend it to anyone. I can watch and search for notes. I can save them in the subject folder. I can revise it any time when I come back. If you haven't tried this app, you're really missing out.
Basil
Android user
This app has made me feel so much more confident in my exam prep, not only through boosting my own self confidence through the features that allow you to connect with others and feel less alone, but also through the way the app itself is centred around making you feel better. It is easy to navigate, fun to use, and helpful to anyone struggling in absolutely any way.
David K
iOS user
The app's just great! All I have to do is enter the topic in the search bar and I get the response real fast. I don't have to watch 10 YouTube videos to understand something, so I'm saving my time. Highly recommended!
Sudenaz Ocak
Android user
In school I was really bad at maths but thanks to the app, I am doing better now. I am so grateful that you made the app.
Greenlight Bonnie
Android user
very reliable app to help and grow your ideas of Maths, English and other related topics in your works. please use this app if your struggling in areas, this app is key for that. wish I'd of done a review before. and it's also free so don't worry about that.
Rohan U
Android user
I know a lot of apps use fake accounts to boost their reviews but this app deserves it all. Originally I was getting 4 in my English exams and this time I got a grade 7. I didn’t even know about this app three days until the exam and it has helped A LOT. Please actually trust me and use it as I’m sure you too will see developments.
Xander S
iOS user
THE QUIZES AND FLASHCARDS ARE SO USEFUL AND I LOVE Knowunity AI. IT ALSO IS LITREALLY LIKE CHATGPT BUT SMARTER!! HELPED ME WITH MY MASCARA PROBLEMS TOO!! AS WELL AS MY REAL SUBJECTS ! DUHHH 😍😁😲🤑💗✨🎀😮
Elisha
iOS user
This apps acc the goat. I find revision so boring but this app makes it so easy to organize it all and then you can ask the freeeee ai to test yourself so good and you can easily upload your own stuff. highly recommend as someone taking mocks now
Paul T
iOS user