what programming language do we use?
Swift Playgrounds.
what is the key word for a for loop?
for
something you test that results in true or false?
condition
function and or loop
What Is a Command?
Instruction you give a computer
what is the key word for a while Loop?
While
what is boolean?
true or false
what is Syntax?
coding language grammar.
3 left turns
what is a for loop?
Runs a block of code over and over for a set number of times.
A block of code that will run only if something is true
conditional code
What best describes an algorithm?
A step-by-step series of operations
What is at the end of a command? how do you start/ end a block of code?
Parenthesis () and Curly braces {}
what is a While Loops?
A loops that runs a block of code as long as a given condition is true.
what is an if statement?
Conditional statement that plays if proved true
what is a bug in code?
an error in your code
what do you call a group of commands grouped together?
function
what is a loop?
a block of code that is repeated
what is an else statement?
Conditional statement that plays if the if statement is not proved true
What is a mistake in code called?
BUG