Library Computer Science 0478 Automated Systems
O Level · Computer Science 0478

Automated Systems

Revise Automated Systems for Computer Science 0478 (O Level) — revision notes and instant AI marking. Free to start.

📖 Revision notes · preview
Cambridge (CIE) IGCSE · Computer Science

Automated Systems

The big idea: a computer system can sense the world, think about what it senses, and then physically act on it — all without a human touching a single button.

SummaryEverything in this chapter, at a glance
  • An automated system collects data, makes decisions, and performs tasks — with no human involvement in the loop.
  • Every automated system needs exactly three components: a sensor, a microprocessor, and an actuator.
  • The sensor is the "eyes and ears" (input), the microprocessor is the "brain" (processing/decisions), and the actuator is the "hands" (output/physical action).
  • Automated systems have general advantages (cost savings long-term, safety, efficiency, consistency) and general disadvantages (expensive to set up, need heavy testing, security risks, inflexible, need maintenance, can cause job losses).
  • Different real-world sectors (industry, transport, agriculture, weather, gaming, lighting, science) have their own specific pros and cons worth knowing by name.
  • Exam answers usually want the full "loop": sensor collects → data converted to digital (ADC) → sent to microprocessor → compared to stored/threshold value → decision made → signal sent to actuator → actuator acts → loop repeats continuously.
What Is an Automated System?

Definition & the three components

An automated system is a computer system that collects information from its surroundings and then reacts to that information by performing tasks — all on its own, with no person deciding what to do in the moment. The human's involvement happens earlier, when the system is programmed with the rules it should follow. Once it's running, it just watches the world and reacts to it.

Every automated system, no matter how complicated it looks on the outside, is built from exactly three components working together in a loop:

  1. Sensor — collects information about the environment (e.g. temperature, light, motion, pressure) and feeds it to the microprocessor as an input.
  2. Microprocessor — the decision-maker. It takes the data from the sensor, processes it, and compares it against pre-programmed rules (thresholds/stored values) to decide what should happen next.
  3. Actuator — takes the microprocessor's decision and turns it into a real, physical change in the world. This is the system's output.
Analogy — think of your own body: Your skin sensing heat is the sensor. Your brain deciding "that's too hot, pull away!" is the microprocessor. Your arm muscles actually pulling your hand back is the actuator. The whole reflex happens automatically — you don't consciously plan each step, you just react. That's exactly how an automated system behaves.
┌───────────┐ data ┌────────────────┐ signal ┌───────────┐ │ SENSOR │ ───────────────▶ │ MICROPROCESSOR │ ──────────────▶ │ ACTUATOR │ │ (input) │ (converted to │ (processes & │ (decision = │ (output) │ │ │ digital data) │ makes decision)│ instruction) │ │ └───────────┘ └────────────────┘ └───────────┘ ▲ │ └───────────────────── physical change happens ◀────────────────┘ (system keeps monitoring — the loop repeats)

Examples of the physical changes an actuator can make include:

  • Opening or closing a door or valve (e.g. an automatic irrigation valve turning on when soil is too dry)
  • Activating an alarm (e.g. a smoke detector sounding a siren)
Key Rule
Sensor = Input → Microprocessor = Process/Decide → Actuator = Output. If you can label these three parts in any scenario, you can answer almost any "describe how this system works" question.
Practice Question 1

A greenhouse has a system that automatically opens a roof vent when it gets too hot inside. Identify the sensor, microprocessor, and actuator in this system, and briefly describe what each one does.

Practice Question 2

Explain why a system that only had a sensor and an actuator (no microprocessor) could not be called a true "automated system" in the IGCSE sense.

How the Loop Actually Runs (Exam Answer Structure)

The full sequence examiners want to see

Long-answer questions (often worth 6–8 marks) ask you to "describe how the sensors and microprocessor are used in this system." These questions are mark-scheme goldmines because the structure is nearly always the same. Learn this sequence and you can adapt it to any scenario — a theme park water sprayer, a smart thermostat, a car parking sensor, anything.

  1. A sensor collects data from the environment (name the specific type: motion, temperature, light, pressure, etc.)
  2. This data is converted to digital using an ADC (Analogue-to-Digital Converter) — because sensors usually detect the real, analogue world, but microprocessors only understand digital data
  3. The sensor sends the data to the microprocessor
  4. The microprocessor compares the data to a stored/pre-programmed value (a threshold)
  5. If the value is outside the acceptable range → the microprocessor decides an action is needed
  6. A signal is sent to the actuator, which performs the physical action
  7. If the value is within range → no action is taken
  8. This entire process runs in a continuous loop — the system keeps checking, over and over, without stopping
Key Rule — ADC
Real-world signals (heat, light, sound, motion) are analogue — they vary smoothly. Microprocessors can only process digital (binary) data. That's why an ADC has to sit between the sensor and the microprocessor to translate one into the other.
Worked example from the source material — the theme park splash game: A player runs from start to finish trying not to get wet. Sensors and a microprocessor work together to spray water at the player as they pass each sensor.
StepWhat happens
1A motion sensor collects data as the player runs past
2This data is converted to digital using ADC
3The sensor sends the data to the microprocessor
4The microprocessor compares the data to stored data
5If the value is outside the expected range, water will be sprayed
6A signal is sent to the actuator to spray the water
7If the value is within range, no action is taken
8This runs in a continuous loop
Practice Question 3

A car park barrier system uses a pressure sensor in the road and a microprocessor to control the barrier. Describe how the sensor and microprocessor work together to raise the barrier for an arriving car. [6]

General Advantages & Disadvantages

The universal pros and cons list

These apply to any automated system, regardless of what it's used for. Examiners love asking "discuss the advantages and disadvantages of automating X" — this table is your toolkit for building that answer.

AdvantagesDisadvantages
Cost — saves money in the long-term (less need to pay wages over time)Cost — expensive to set up in the short-term (buying sensors, actuators, microprocessors)
Safer — allows timely interventions (reacts faster than a human could)Testing — significant testing must be done before the system can be trusted in use
Safer — keeps humans away from hazardous environmentsSecurity — automated systems are open to cyber attacks
Efficient — uses materials and resources efficientlyFlexibility — will only react to scenarios it has been programmed for; can't improvise
Consistent — results are repeatable every timeMaintenance — needs to be well maintained to keep working correctly
Unethical — can result in major job losses
Memory Trick For advantages, think "CSEC" — Cost (long-term), Safety (x2), Efficiency, Consistency. For disadvantages, think "CTSFMU" — Cost (short-term), Testing, Security, Flexibility, Maintenance, Unethical (jobs).
Practice Question 4

Give one advantage and one disadvantage of automating a task that was previously done by a factory worker, other than cost.

Scenario-Specific Advantages & Disadvantages

Applying automation to real sectors

Beyond the general list, the exam also expects you to know pros and cons that are specific to a particular field. These are more precise and score better marks than generic answers, because they show you understand the actual context.

ScenarioAdvantagesDisadvantages
IndustryIncreased production; improved quality controlHigh investment costs; job losses
TransportFewer accidents & less traffic congestion; increased logistical efficiencyTransportation drivers lose jobs; technology reliability concerns
AgricultureLess manual labour; increased crop yield & resource managementHigh start-up costs for equipment and sensors
WeatherAccurate forecasting; improved early warning systemsDependence on accurate sensor data (bad data = bad forecast)
GamingPersonalised experience; AI-enhanced opponents add challengeReduced creativity & problem-solving for players; repetitive gameplay
LightingIncreased energy efficiency; better security with motion-activated systemsLack of human control over light adjustments
ScienceFaster & more precise; reduced risk of human errorHigh cost of development & maintenance; potential for algorithm bias
Exam Tip If a question names a specific scenario (e.g. "a farm" or "a self-driving car"), always try to give a scenario-specific point before a generic one — it shows deeper understanding and usually scores higher.
Practice Question 5

A weather station uses an automated system to predict storms. State one advantage and one disadvantage of this system that is specific to weather forecasting.

What to MemoriseQuick-fire reference — the facts examiners expect instantly
Automated system
A computer system that collects information and can react and perform tasks based on that data, without direct human control during operation.
Sensor
Collects information from the environment and provides it to the microprocessor as an input.
Microprocessor
Processes the information from the sensor and makes decisions based on pre-programmed rules (comparing data to stored/threshold values).
Actuator
Makes a physical change in the world based on instructions given by the microprocessor — the system's output (e.g. opening a valve, sounding an alarm).
ADC (Analogue-to-Digital Converter)
Converts the analogue data collected by a sensor into digital data so the microprocessor can process it.
The exam answer sequence
Sensor collects data → converted to digital (ADC) → sent to microprocessor → compared to stored value → decision made (act or don't act) → signal sent to actuator → actuator performs action → process repeats in a continuous loop.
General advantages
Long-term cost saving; timely interventions (safety); keeps humans out of hazardous environments; efficient use of materials/resources; consistent, repeatable results.
General disadvantages
Expensive short-term setup; requires significant testing; vulnerable to cyber attacks; inflexible (only reacts to programmed scenarios); needs ongoing maintenance; can cause major job losses.
Concepts ChecklistTick off each one only once you can explain it without looking
Exam Tips & Common Mistakes
Don't forget the "continuous loop" mark
A very common mark lost is forgetting to state that the whole process repeats continuously. It's an easy mark — always end your "describe the system" answer with this point.
Don't skip the ADC step
Students often jump straight from "sensor collects data" to "sends to microprocessor," skipping the analogue-to-digital conversion. Sensors detect analogue signals; microprocessors need digital data — always mention the ADC.
Cover both outcomes, not just the "action" branch
Mark schemes reward stating what happens when the value IS within the acceptable range too (i.e. no action is taken), not just what happens when it's outside the range.
Match your advantage/disadvantage to the scenario given
If the question is about a farm, transport system, or weather station, don't just recycle the generic "cost/safety/testing" list — pick out the scenario-specific point (e.g. "job losses for transportation drivers") for extra marks.
Sensor ≠ Actuator — don't mix up input and output
A classic slip-up is describing the actuator as "detecting" something, or the sensor as "performing an action." Sensor = input (detects). Actuator = output (acts).
What examiners actually look for In long-answer questions, marks are awarded for each distinct, correctly-sequenced step — not for a vague paragraph. Write your answer as a clear list of short, separate points that follow the sensor → ADC → microprocessor → decision → actuator → loop order.
Automated Systems — Cambridge (CIE) IGCSE Computer Science Revision Guide · For personal study use
🔓 Read the full Automated Systems note — free You're seeing the preview · free account, no card needed
Also in the full note
  • Definition & the three components
What's inside
📖 Revision notes 🎯 Learn mode ✦ AI flashcards ✓ Instant AI marking 🧊 3D explorers 🧪 Experiments & simulations 📈 Progress tracking
📄 Practise Automated Systems with Computer Science 0478 past papers Every paper with its mark scheme — answer online, marked instantly. Open →

Read the full Automated Systems notes free

That's the preview — create a free account to read the rest, plus flashcards and practice questions with instant AI marking. No credit card.

Unlock the full notes free →

More Computer Science topics