Hardware
HTML
CSS
JavaScript
General
200

These are the two possible states of a bit in computing.

What are ON and OFF?

What are 1 and 0?

200
HTML is a programming language (True/False)

What is false?

200

The meaning of CSS

What is Cascading Style Sheets?

200

This is the naming convention used for variables in JavaScript.

What is camelCase?

200
Seeing the user interface of Google Maps or Youtube on a website is an example of this tag. 

What is an iframe?

400

1000 these are in 1 terabyte

What are gigabytes?

400

The style and look of your webpage should be done through HTML. (True/False)

What is False?
400

Each element in CSS has the following structure: Content, Padding, Border, Margin. 

These are all part of this model.

What is the CSS Box Model?

400

Strings created with backticks (``) are called this.

What are template literals?

400

A computer without a dedicated graphics card would use this for graphics rendering.

What is onboard graphics?

600

Data saved to this can be accessed from anywhere.

What is the cloud?

600

<li>s in a <ul> would have this at the start of each list item.

What are bullet points?

600

This type of CSS is found in between <head> and </head>

What is Internal CSS?

600

NaN stands for this

Not a Number

600

Internet Service Providers advertise their speeds in these. 

What are megabits/gigabits?

800

This American company started selling products to consumers that use its own CPUS in 2020.

What is Apple?

800

If divs are block level elements, these are their inline cousins.

What are spans?

800

The presence of this character in a CSS files means you are creating a CSS class.

What is a period (.)?

800

A function is anything that includes these characters.

What are the opening and closing brackets?

800

What are the three main data types we work with in programming?

What are strings, numbers, and Booleans?

1000

This type of storage is volatile.

What is Random Access Memory (RAM)?

1000

<img src="example_image.pdf" alt=Example Image>

Identify the errors in this element.

PDF is not a valid file format that can be used a source in image tags.

The alt text is not a string - it should have a pair of double quotes or a pair of single quotes.

1000

h1 {

 color: green;

}

h1 {

 color: purple;

}

The colour of h1s on our webpage would be this.

What is purple?

1000

State all values that would be logged to the console in the following: 

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

     console.log(i)

}

What are:

0

10

20

30

40

50

60

70

1000
(DOUBLE POINTS) What are the four main types of operators in JavaSCript? Provide examples for each.

What are assignment, arithmetic, comparison, and logical. 

Assignment: var i = 0;

Arithmetic: guesses++

Comparison: if (semester == "done")

Logical: if (semester == "done" && vacation == "planned")

M
e
n
u