HTML
CSS
JAVASCRIPT
Programming Logic
100

This is what HTML stands for

What is Hyper Text Markup Language

100

This is what CSS stands for

What is Cascading Style Sheets

100

In JavaScript, this keyword is used to declare a variable that cannot be reassigned

What is const

100

In the following problem, what will printing x to the console give?

let x = 0

x = 2

console.log(x)

What is 2

200

To specify an image URL in HTML, you use the src attribute within this element.

What is the img element

200

This css property allows us to change the position of the text relative to the element's own position.

What is text-align

200

This variable keyword allows us to use variables outside of their own scope.

What is var

200

What does variable z equal.

const y = 10

const x = 12

const z = y + x

What is 22

300

To open a link in a new window or tab with an href attribute, you would use this html element.

 What is anchor.

300

This css property allows us to change the color of the text within an element

What is color

300

This method in JavaScript adds one or more elements to the end of an array

What is push()

300

What will print to the console after this for loop?

for (var i = 0; i < 10; i++) {

}

console.log(i)

What is 10

400

This tag allows us to link an external style sheet to our HTML page

What is link

400

These are the 3 ways you can apply css to an html page.

What is inline, internal, external.

400

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.

400

let j = 0

if (j == 0) {

  j = 9

}

if (j == 9) {

  j = 10

}

if (j == 3) {

  j = 0

}

What is 10

500

This is the exact syntax for connecting a javascript file to your html page

What is <script src = ''></script>

500

This is what the browser uses to determine the most relevant html element when compared to a certain selector. 

What is specificity

500

This is what the following boolean expression will equate to:

!"false" !== !true

What is false

500

What will the below function return

function jeopardy(x, y) {

if (x == 10) {

y = 5}

return x + y

}

jeopardy(10,2)


What is 15