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

what programming language do we use?

Swift Playgrounds. 

100

what character are you at the beginning of Swift playgrounds platform?

Byte 

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

100

_________ switches are OFF and awaiting activation

Closed

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. 

200

Name another character from Swift playgrounds

Hopper or Blu

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

300

Name another character from Swift playgrounds

Hopper or Blu

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

400

To tell a program to run a function

Call

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

500

The process of combining small parts of a program to solve larger problems

Composition