commands / functions
For Loops / While Loops
Conditional Code
Vocabulary
100

what programming language do we use?

Swift Playgrounds. 

100

what is the key word for a for loop?

for 

100

something you test that results in true or false?

condition

100
what do you use when you see a pattern that repeats?

function and or loop

200

What Is a Command?

Instruction you give a computer 

200

what is the key word for a while Loop?

While

200

what is boolean? 

true or false 


200

what is Syntax?

coding language grammar. 

300
How do you turn right with only left turns?

3 left turns 

300

what is a for loop?

Runs a block of code over and over for a set number of times.

300

A block of code that will run only if something is true

conditional code


300

What best describes an algorithm?

A step-by-step series of operations

400

What is at the end of a command? how do you start/ end a block of code?

 Parenthesis () and Curly braces {}

400

what is a While Loops? 

A loops that runs a block of code as long as a given condition is true. 

400

what is an if statement?

Conditional statement that plays if proved true

400

what is a bug in code?

an error in your code

500

what do you call a group of commands grouped together? 

function 


500

what is a loop?

a block of code that is repeated  

500

what is an else statement?

Conditional statement that plays if the if statement is not proved true

500

What is a mistake in code called?

BUG