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
+ - * / %

How would you call this function?
greet();
What is the first keyword of a conditional statement?
if
What does CSS stand for?
Cascading Style Sheets
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 data type do Comparison Operators return?
Boolean

Identify the Parameters and Arguments.
What keyword should you use to complete this chain?
else
<style> </style> and they go in the <head>
The ____ tags contain all information necessary to build the website but is NOT visible.
The _____ tags contain all visible elements.
What is <head> and <body>
What is the result of this code?
50 is printed to the console
What is the assignment operator?
=
What is returned by this function call?
What is -1

What operator belongs in the blank statement to get the console to log "wahoo!"?
>=, ===, <=
The term for p and #blueText is ______ while the term for color: blue; is ______
Selector and Property
<h1> I'm a header </h1>
<p> I'm a paragraph </p>
What is the value given to a variable that is declared but not initialized?
var myValue;
undefined
You are given a number called n.
What do we know about n if (n % 2 === 1) is true?
It is an odd number

What is printed to the console by this code? Explain.
Nothing because there is no function call!

For what whole number values of b will the console log "awww yeee"?
4 and under
What are the 2 ways that we can select elements other than by tag name? How are they different?
By class and id. class groups together elements while ids are unique.
What is the attribute that specifies the location of an image for an <img> tag?
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.

What is the value of bool?
False
Explain the purpose of the return keyword for a function? What happens if a function doesn't have this keyword?
It determines the value produced by a function when that function is called. If no return value is specified it returns undefined.
What is the name for everything contained within Curly Braces { }
What is a code block

What would the selector be to style the elements with class="text" be? What about the element with id="content"?
.text and #content