Google Sheets
HTML
CSS
JavaScript
General
200

The starting character in a Google Sheets formula

What is an equal sign?
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

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

What are ON and OFF?

What are 1 and 0?

400
This character means "less than".

What is the left angle bracket (<)?

400

<ul> and </ul> are an example of this.

What are tag pairs?

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?

600

Integers are on this side of a cell by default

What is the right side?

600

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

What is False?
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

Data saved to this can be accessed from anywhere.

What is the cloud?

800

Strings are on this side of a cell by default?

What is the left side?

800

This is the starting tag to create a numbered list.

What is <ol>?

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

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

What is Apple?

1000

This is the formula for summing cells A1 to A10 together.

What is =SUM(A1:A10)?

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

This type of storage is volatile.

What is Random Access Memory (RAM)?