Words
App Wizard
Function Junction
Crave the Loops
100

code that tells an application to perform a specific action

What is a command?

100

The layout of your app, including the different pages is called

App Map

100
Symbols that modify code

logical operator

100

Why do we use for loops?

to make our code shorter

200

A created command that is a defined set or list of commands, such as (brush teeth)

What is a function?

200

Your app should include these things, such as using the touch screen, the camera, access to internet

App Features

200

This code will only run if a certain condition is met

An if statement
200
When does a while loop stop running?

When the condition is no longer true

300

Putting functions in other functions is called

Nesting

300

App used for creating the presentations for our apps

Keynote

300

This code allows you to create your own command

a func command

300

This code will run a set of commands for a specific number of times

A for loop

400

A type of code that is repeated a certain number of times

A loop

400

A short presentation that is meant to get your attention in a small amount of time.

Elevator Pitch

400

&& is the logical operator for

AND

400

What is the difference between a for loop and a while loop

a for loop will run for a number of times, a while loop will run as long as the condition is true

500

Code that runs only when conditions are met, such as if statements

Conditional Code

500

An error in a code that prevents it from running is called a...

bug

500

A condition that is either true or false, such as isOnGem

Boolean

500

What are the three parts of an If statement

if, else if, and else