PM
AQA GCSE COMPUTER SCIENCE EXAM QUESTIONS AND
ANSWERS WITH COMPLETE SOLUTIONS VERIFIED GRADED A++
Terms in this set (123)
Data Consists of raw facts and figures without context or meaning.
Information What exists when data has been given context or meaning.
Space for a single piece of data, each variable has a data type. You can
Variable
change variables once they have been set.
Space for a single piece of data, each constant has a data type. You
Constant
cannot change constants once they have been set.
Boolean A data type, can be either true or false and requires only one bit of storage.
A data type, a single letter, number, punctuation mark, space etc. -
Character
requires one byte.
A data type, stores any number of characters, such as a person's name,
String
address and postcode.
Integer A data type, whole numbers, such as a person's age or how much stock a shop has.
Real A data type, decimal numbers, such as distances and fractions.
If you see AND between two Boolean expressions, the whole expression is
Boolean Operator - AND
true only if both of the smaller expressions are true. For example: age <=
16 AND age >= 5
If either of the expressions either side of the OR is true, then the entire
Boolean Operator - OR
expression is true.
Adding NOT to an expression simply makes it the opposite of what it was
Boolean Operator - NOT
before. For example: NOT (age <= 11). This covers all other ages, 12 and
up.
The meaning of the following >= Greater than or equal to
operators: < Less than
>= = Equal to
< != Not equal to
=
!=
1/
13
, 3/25/25, 5:33 AQA GCSE Computer Science |
PM
2/
13