Keywords Flashcards
1
Q
Sequence
A
Writing code in the order it should be run
2
Q
Selection
A
Choosing which section of code to run based on a condition
3
Q
Iteration (FOR loops)
A
Repeating sections of code for a set number of times
4
Q
Iteration (WHILE loops)
A
Repeating sections of code until something happens
5
Q
Variable
A
A box in the computer’s memory to store a single value name
6
Q
List
A
A way of adding multiple values and storing under a single variable name
7
Q
File
A
A way of storing data from one program run to another
8
Q
Assignment
A
Storing a value inside a variable e.g. name = “Rebecca”
9
Q
Value
A
A piece of data stored in a variable e.g. “Rebecca”
10
Q
Input
A
Putting data INTO your program
11
Q
Output
A
Printing/saving data FROM your program