Upload||Graded A+
Algorithm -CORRECT ANSWER A set of precise step by step instructions to achieving
a specific outcome.
Debug -CORRECT ANSWER To find and fix errors in code.
Sequence -CORRECT ANSWER A set of actions or events that must be carried out in
the same order every time.
Selection -CORRECT ANSWER A decision or choice. It is the place where an algorithm
or program branches in different directions.
Iteration -CORRECT ANSWER Loop or repetition. Sections of code or algorithmic
instructions that are repeated.
Python -CORRECT ANSWER A coding language that you are using to create
programs.
= -CORRECT ANSWER Assigning variables
Variable -CORRECT ANSWER Data that is store in a named location. These can
change or be changed.
Input -CORRECT ANSWER Data entered INTO a program or computer system.
Output -CORRECT ANSWER Information coming OUT of program. Often this is
achieved using print command.
Import -CORRECT ANSWER Accesses modules of code from the python library
While Loop -CORRECT ANSWER A loop that will make a set of instructions repeat
while a status is TRUE
For Loop -CORRECT ANSWER A loop that will repeat for a set number of times.
IF statement -CORRECT ANSWER A conditional statement. IF something is true then
'sequence A' will run. IF is it is not 'sequence B' will run. (allows selection to happen)
ELIF -CORRECT ANSWER An additional IF. Allows you to check multiple conditions.
ELSE -CORRECT ANSWER Otherwise. This pairs with an IF statement to run code
when IF statement condition is false.