What does execution mean?
The process by which a computer carries out the instructions of a computer program.
What is a syntax error?
An error that occurs when a rule of the programming language is broken.
What is a data type?
Specifies what kind of data a variable can hold.
What are the four common data types?
Integer, Real, Boolean & Character.
What is initialisation?
The process of assigning an initial value to a variable.
What do you use an assignment statement for?
To change the value of a variable.
What are Real values called in Python?
A float, or floating number.
A function is:
A subprogram that performs a specific task and can be used at any point in the program.