Skip to content
Educator
GCSE Computer Science

Programming

271 questions25 subtopicsAQAEdexcelEduqasOCR
Practise all 271 questions free →

What's covered

Defensive Design15
Code Maintainability and Comments13
Subroutines — Procedures and Functions13
Syntax Errors vs Logic Errors13
Boolean Operators — NOT, AND, OR12
Data Types — Integer, Real, Boolean, Character, String11
Data Validation Routines11
Keyboard Input and Screen Output11
Records11
Relational Operators11
Structured Programming and Modularity11
Arithmetic Operations — Including Integer Division and Modulo10
Character-to-Code Conversion10
Iteration — Definite (For) and Indefinite (While)10
Meaningful Identifier Naming10
Nested Iteration and Selection10
One-Dimensional Arrays10
Parameters, Return Values, Local Variables10
Random Number Generation10
Selection — If, Else If, Nested10
String Handling — Length, Position, Substring, Concatenation10
Testing — Normal, Boundary and Erroneous Data10
Two-Dimensional Arrays10
Variables and Constants — Declaration and Assignment10
Authentication Routines9

Key facts

1

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

2

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

3

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

4

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

5

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

6

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

7

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

8

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

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

10

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

Sample questions

A taste of the 271 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