age = 12
True of False, this is the correct way to declare a variable
We use these statements for conditional code
What is if and else if statements?
These 2 coding languages were used to create swift.
What is C and Objective C
Describe the meaning of UI
What is how the app looks?
Name this operator (+)
What is addition?
The following code would produce which type of variable.
var day = "Friday"
This conditions will help Byte know to toggle a switch
What is isOnClosedSwitch() ?
This concept is the way we name functions and variables.
ex. montgomeryCanCodeSummerProgram
What is Camel Case
Describe the meaning of UX
What is, how the app feels?
Name this Logical Operator ( && )
In programming these are something that holds a value or piece of data .
What is a variable?
This concept is when a computer is deciding between something being True or False.
What is Boolean Logic?
These are called { }
What is Curly Braces?
This is an early sample, model, or release of a product created to test a concept or process.
Name this logical operator ( ! )
What is Not?
True or False, in Swift you can change a variable type after it is declared.
ex. var name = "John"
name = 7
What is False?
True or False, You can combine loops and conditional statements
What is True?
This concept combines existing commands to create a new behavior.
What is Composition?
Name the stages of the App Design Process
What is Brainstorm, Planning, Prototype, Evaluate?
Name this Logical Operator ( || )
What is OR?
var cost = 20.85 is which type of variable
What is float?
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?
This concept allows you to add two string variables together to create a longer string.
ex. myName = fName + lName
What is Concatenation?
Name some essential questions you should include in your pitch.
What is, Why? Who? & How?
This operator ( = ) does the following
What is assigns?