Binary
What is 1's and 0's
When checking if something is true or false
What is a conditional (boolean) statement? or if/elif/else
when you need a program to start again
What is a loop.
Type of variable that would be used to store the word 'Strong'
What is String?
The purpose of this function is to show output
What is print()?
when something ins coding is missing or spelled wrong
What is a syntax error?
When you need the program to determine if something is true
What is a if, else (boolean)?
Type of variable used to display the amount on your paycheck.
What is float() known as a Decimal?
instructions to execute a specific task
What is a statement
Comments are this colour in the Python interperter.
What is the color green?
When your program runs but it is giving the wrong answer?
What is a logical error?
variableName = variableName +1
What is incrementation?
the = is used with variables as
What is an assignment operator?
the following symbols are examples of...
==, <=, >=, !=
What are comparison operators?
It is commented code that tells what the program does.
What is Program description?
when using a while loop and the program keeps running
What is an infinete loop?
prior to creating a loop and counter = 0 is used
What is an initialized variable?
Variable type for displaying whole numbers
What is Integer or int()?
when using keywords like 'or', 'and' or 'not'
What are relational operators?
Programmers use this to define the purpose of each line of code for other users or for their own understanding.
What is In-Line Commenting?
Common errors when writing if/elif/else or while statements
What is indentation?
The program/application that reads code line by line.
What is an interpreter?