Skip to content
Educator
GCSE Computer Science

Programming

235 questions25 subtopicsAQAOCREdexcelEduqas
Practise all 235 questions free →

What's covered

Boolean Operators — NOT, AND, OR12
Code Maintainability and Comments12
Subroutines — Procedures and Functions12
Data Types — Integer, Real, Boolean, Character, String11
Defensive Design11
Syntax Errors vs Logic Errors11
Arithmetic Operations — Including Integer Division and Modulo10
Character-to-Code Conversion10
One-Dimensional Arrays10
Random Number Generation10
Selection — If, Else If, Nested10
String Handling — Length, Position, Substring, Concatenation10
Authentication Routines9
Data Validation Routines9
Nested Iteration and Selection9
Records9
Keyboard Input and Screen Output8
Meaningful Identifier Naming8
Parameters, Return Values, Local Variables8
Relational Operators8
Testing — Normal, Boundary and Erroneous Data8
Two-Dimensional Arrays8
Variables and Constants — Declaration and Assignment8
Iteration — Definite (For) and Indefinite (While)7
Structured Programming and Modularity7

Key facts

1

Arithmetic Operations — Including Integer Division and Modulo

In AQA pseudo-code the keyword for integer division is DIV.

2

Authentication Routines

Authentication identifies who you are; authorisation decides what you are allowed to do.

3

Boolean Operators — NOT, AND, OR

age >= 18 AND has_ticket is true only when both conditions hold.

4

Character-to-Code Conversion

The ASCII code of the character '1' is 49, not the integer 1.

5

Code Maintainability and Comments

A comment is a note added to code to explain its purpose; it is ignored by the computer when the program runs.

6

Data Types — Integer, Real, Boolean, Character, String

The five data types named on the AQA 8525 spec are integer, real, Boolean, character and string.

7

Data Validation Routines

A format check tests that data matches an expected pattern, e.g. UK postcode LL1 1LL.

8

Defensive Design

Anticipating misuse means a programmer thinks about how a user could accidentally or deliberately cause a program to fail, and writes code to prevent harm.

9

Iteration — Definite (For) and Indefinite (While)

FOR i ← 1 TO 5 (inclusive both ends) runs the loop body five times.

10

Keyboard Input and Screen Output

In AQA pseudo-code, OUTPUT writes a value or string to the screen.

Sample questions

A taste of the 235 questions in this topic, answers marked. Sign up to practise the full set with spaced repetition.

1Arithmetic Operations — Including Integer Division and Modulo

What is the value of 10 DIV 3?

  • •One (the result minus two)
  • •Ten (the dividend value itself)
  • ✓Three (the integer part only)
  • •Zero (no integer part at all)
2Authentication Routines

What is the most common form of authentication?

  • •A handshake captured by the computer's camera
  • •A signature signed on a physical form
  • ✓A username and password combination
  • •A weekly emailed code sent to the user
3Boolean Operators — NOT, AND, OR

When does an AND expression return true?

  • •When at least one operand is true
  • ✓When both operands are true
  • •When neither operand is true at all
  • •When the operands are different in value
4Character-to-Code Conversion

What does ASCII let us do with characters?

  • •Compress characters to reduce file size
  • •Display characters in different fonts and sizes
  • •Encrypt characters for secure transmission
  • ✓Represent characters as numbers
5Code Maintainability and Comments

Why are subroutines used when structuring a program?

  • •To convert the code into binary faster
  • •To make the program run more quickly
  • ✓To split it into smaller reusable parts
  • •To stop users entering invalid data
6Data Types — Integer, Real, Boolean, Character, String

Name the five common AQA data types.

  • •Integer, float, Boolean, array, string
  • •Integer, real, binary, character, string
  • •Integer, real, Boolean, character, record
  • ✓Integer, real, Boolean, character, string

Try it for four weeks. Free.

One school. Unlimited classes. No card limit. No teacher limit. If your students aren't practising daily by the end of the trial, you owe us nothing.

More GCSE Computer Science topics

📖 All GCSE Computer Science key terms & vocabulary →