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
what is &&?
logical AND
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 || ?
logical OR
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 is ! ?
Logical NOT
What do call when its look like this? collectGemTurnLeft()
camelCase
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 are the logical operators?
|| , && , !
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 does the logical not do?
Turns it to its opposite.
how do you declare a function?
func ______