Variables
Loops & Conditions
Swift Concepts
App Design
Logical Operators
100

age = 12

True of False, this is the correct way to declare a variable

What is False?
100

We use these statements for conditional code

What is if and else if statements?

100

These 2 coding languages were used to create swift.

What is C and Objective C

100

Describe the meaning of UI

What is how the app looks?

100

Name this operator (+)

What is addition?

200

The following code would produce which type of variable.

var day = "Friday"

What is String?
200

This conditions will help Byte know to toggle a switch

What is isOnClosedSwitch() ?

200

This concept is the way we name functions and variables.

ex. montgomeryCanCodeSummerProgram

What is Camel Case

200

Describe the meaning of UX

What is, how the app feels?

200

Name this Logical Operator ( && )

What is AND?
300

In programming these are something that holds a value or piece of data .

What is a variable?

300

This concept is when a computer is deciding between something being True or False.

What is Boolean Logic?

300

These are called { } 

What is Curly Braces?


300

This is an early sample, model, or release of a product created to test a concept or process.

What is a Prototype?
300

Name this logical operator ( ! )

What is Not?

400

True or False, in Swift you can change a variable type after it is declared.

ex. var name = "John"
           name = 7

What is False?

400

True or False, You can combine loops and conditional statements

What is True?

400

This concept combines existing commands to create a new behavior. 

What is Composition?


400

Name the stages of the App Design Process

What is Brainstorm, Planning, Prototype, Evaluate?

400

Name this Logical Operator ( || )

What is OR?

500

var cost = 20.85 is which type of variable

What is float?

500

Name the difference between For Loops and While Loops. 

What is, For loops run for a certain amount of times and while loops run until a condition is met?

500

This concept allows you to add two string variables together to create a longer string.

ex. myName = fName + lName

What is Concatenation?

500

Name some essential questions you should include in your pitch. 

What is, Why? Who? & How?

500

This operator ( = ) does the following

What is assigns?