HTML stands for this
What is Hyper Text Markup Language
The keyword used to create a new variable
What is var
Name 3 arithmetic operators
+ - * / %
What is the first keyword of a conditional statement?
if
What is an array?
a data structure consisting of a collection of elements (values or variables), each identified by at least one array index or key.
What is the first index of an array?
0
HTML is responsible for _______ and ______
What is Structure and Content
Identify the data types of the following variables
name is a string, age is a number, and canDrive is a boolean
What is the assignment operator?
=
What keyword should you use to complete this chain?
else
How many elements can an array have? (assume there are no hardware linitations.)
∞
Name 5 programming languages
Varies

Based off of the following code, what color with the paragraph text be?
red
What is the result of this code?
50 is printed to the console
What are the symbols for the strict equality operator?
===
In programming, what do conditionals do?
Tells a program to do something depending on whether a condition is met
Write down the code for an array called pies that has 3 elements that are different pie flavors.
var pies = ["apple", "pumpkin", "chicken pot"];
What are reusable blocks of code that execute a sequence?
Function
What text will display on the website if this code runs?
I'm a header
I'm a paragraph
What is the name of the data type that has one of two possible values; true or false?
Boolean

What is the value of bool? True or False?
False

What operator belongs in the blank statement to get the console to log "wahoo!"?
>=, ===, <=
How would you access the last element of any array?
var array = [...]
var lastElement = ???;
array[array.length - 1];
What is a String (in Javascript)?
What does CSS stand for?
Cascading Style Sheets
What is the naming convention used for naming variables / How does it work?
Camel Case. The first letter is lowercase and every other word after is uppercase.
You are given a number called n.
What do we know about n if (n % 2 === 1) is true?
It is an odd number

For what whole number values of b will the console log "awww yeee"?
4 and under
If my array has 400 elements, what is the array index number for the 342nd element?
341

How would you call this function?
greet();