This is what HTML stands for
What is Hyper Text Markup Language
This is what CSS stands for
What is Cascading Style Sheets
In JavaScript, this keyword is used to declare a variable that cannot be reassigned
What is const
In the following problem, what will printing x to the console give?
let x = 0
x = 2
console.log(x)
What is 2
To specify an image URL in HTML, you use the src attribute within this element.
What is the img element
This css property allows us to change the position of the text relative to the element's own position.
What is text-align
This variable keyword allows us to use variables outside of their own scope.
What is var
What does variable z equal.
const y = 10
const x = 12
const z = y + x
What is 22
To open a link in a new window or tab with an href attribute, you would use this html element.
What is anchor.
This css property allows us to change the color of the text within an element
What is color
This method in JavaScript adds one or more elements to the end of an array
What is push()
What will print to the console after this for loop?
for (var i = 0; i < 10; i++) {
}
console.log(i)
What is 10
This tag allows us to link an external style sheet to our HTML page
What is link
These are the 3 ways you can apply css to an html page.
What is inline, internal, external.
Also known as primitives, these 3 datatypes are the most common datatypes you'll see in javascript and the first 3 we taught.
What is Number, String, Boolean.
let j = 0
if (j == 0) {
j = 9
}
if (j == 9) {
j = 10
}
if (j == 3) {
j = 0
}
What is 10
This is the exact syntax for connecting a javascript file to your html page
What is <script src = ''></script>
This is what the browser uses to determine the most relevant html element when compared to a certain selector.
What is specificity
This is what the following boolean expression will equate to:
!"false" !== !true
What is false
What will the below function return
function jeopardy(x, y) {
if (x == 10) {
y = 5}
return x + y
}
jeopardy(10,2)
What is 15