These are the two possible states of a bit in computing.
What are ON and OFF?
What are 1 and 0?
What is false?
The meaning of CSS
What is Cascading Style Sheets?
This is the naming convention used for variables in JavaScript.
What is camelCase?
What is an iframe?
1000 these are in 1 terabyte
What are gigabytes?
The style and look of your webpage should be done through HTML. (True/False)
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?
Strings created with backticks (``) are called this.
What are template literals?
A computer without a dedicated graphics card would use this for graphics rendering.
What is onboard graphics?
Data saved to this can be accessed from anywhere.
What is the cloud?
<li>s in a <ul> would have this at the start of each list item.
What are bullet points?
This type of CSS is found in between <head> and </head>
What is Internal CSS?
NaN stands for this
Not a Number
Internet Service Providers advertise their speeds in these.
What are megabits/gigabits?
This American company started selling products to consumers that use its own CPUS in 2020.
What is Apple?
If divs are block level elements, these are their inline cousins.
What are spans?
The presence of this character in a CSS files means you are creating a CSS class.
What is a period (.)?
A function is anything that includes these characters.
What are the opening and closing brackets?
What are the three main data types we work with in programming?
What are strings, numbers, and Booleans?
This type of storage is volatile.
What is Random Access Memory (RAM)?
<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.
h1 {
color: green;
}
h1 {
color: purple;
}
The colour of h1s on our webpage would be this.
What is purple?
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
What are assignment, arithmetic, comparison, and logical.
Assignment: var i = 0;
Arithmetic: guesses++
Comparison: if (semester == "done")
Logical: if (semester == "done" && vacation == "planned")