Computer Components
Computer Terminology
HTML
CSS
Computational Thinking
Random
100

Which of the following is an example of an output device? (Keyboard, Mic, CPU, Monitor, Ram)

Monitor

100

Binary is a number system that uses which two digits?

0 and 1

100

What tag is used to create a hyperlink to other webpages?

a / anchor tag

100

How would you write a comment in CSS?

1) <!--This is a comment that will only show inside the code -->

2) /* This is a comment that will only show inside the code  */

3) // This is a comment that will only show inside the code

/* This is a comment that will only show inside the code  */

100

Break a problem down into smaller simpler problems.

Decomposition

100

What storage is persistent and faster than HDD?

SSD or Solid State Drive

150

What is a core in a computer?

A processing unit within the CPU


150

Which of the following is an example of software?

(Intel Core I7, Chromebook, Google Sheets, GPU, Monitor, Keyboard)

Google Sheets

150

In the example below, which is the parent element?

<div>

    <p>Hello World</p>

</div>

div

150

What are a CSS selectors?

They are used to specify what HTML elements are targeted for rules and styles.

150

Creating detailed step by step instructions for a recipe is an example of...

Algorithmic Thinking

150

Name 4 of Santa's reindeer.

Rudolf, Dasher, Dancer, Prancer, Comet, Vixen, Cupid, Donner, and Blitzen

200

Which storage device uses magnetic spinning disks to read/write data?

HDD

200

What is the function of a GPU?

Handles graphics rendering to an output


200

How would you write a comment in HTML?

1) <!--This is a comment that will only show inside the code -->

2) /* This is a comment that will only show inside the code  */

3) // This is a comment that will only show inside the code

<!--This is a comment that will only show inside the code -->

200

What is the primary the purpose of CSS?

It styles and positions elements of a webpage.

or simply STYLE and POSITION

200

What is a conditional statement in programming?

It allows a program to run specific code based on whether a condition is true or false. Examples include the key words "if", "else if", or "else".

200

What is the most streamed Christmas song?

"All I Want for Christmas Is You"

250

What connects the CPU, memory, and other hardware components in a computer?

Motherboard

250

What is the primary job of the CPU?

Gives commands to other components of the computer

250

What is the best description for the purpose of HTML?

It lays out the structure and content for a webpage.

or simply STRUCTURE and CONTENT

250

What CSS property and value can be used to change the flow of an html document from vertical to horizontal?

display: flex

or FLEX

250

What does it mean to "call" a function?

To execute / activate a function or to run the code inside a that function.

250

You hear music from the school speakers between classes and your instinct is to start walking or jogging faster to get to class. What part of computational thinking does this relate to?

Pattern Recognition

300

What is the function of a GPU?

Handles graphics rendering to an output

300

What four things are common to all computers?

Input, Output, Processing, Storage

300

Does the following have the correct HTML syntax?

<img src="https://google.com" alt="search icon">Google Search</img>

No, the image tag is a self closing tag and shouldn't contain text inside of it.

It should look like:
<img src="https://google.com" alt="search icon"/>

300

I have a section tag with class "main". Write a CSS class that gives the section a black background and white text. Use proper syntax.

.main {

    background: black;

    color: white;

}

300

What will be printed:

num = 4
while num < 10:
    print(num + 1)
    num = num + 5



5

10

300

What will be printed:

words = ["don","on","one","end"]
letters = []
unique = 0
for word in word:
    for letter in word:

        if letter not in letters:
            letters.append(letter) #Adds letter to letters list

print(letters)

   


['d', 'o', 'n', 'e']