A-level Computing/AQA/Problem Solving, Programming, Data Representation and Practical Exercise/Fundamentals of Programming/answers
< A-level Computing | AQA | Problem Solving, Programming, Data Representation and Practical Exercise | Fundamentals of Programming
Variables[edit]
- number1
-
-
dim name as string
-
dim gender as char
ENUM
-
dim DoB as date
-
dim teacher as boolean
-
- number1
- A person's height in metres is a decimal number, an integer only stores whole numbers. You should use a double or a single instead.