Which of the following is an example of an output device? (Keyboard, Mic, CPU, Monitor, Ram)
Monitor
Binary is a number system that uses which two digits?
0 and 1
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 */
Break a problem down into smaller simpler problems.
Decomposition
What storage is persistent and faster than HDD?
SSD or Solid State Drive
What is a core in a computer?
A processing unit within the CPU
Which of the following is an example of software?
(Intel Core I7, Chromebook, Google Sheets, GPU, Monitor, Keyboard)
Google Sheets
In the example below, which is the parent element?
<div>
<p>Hello World</p>
</div>
div
What are a CSS selectors?
They are used to specify what HTML elements are targeted for rules and styles.
Creating detailed step by step instructions for a recipe is an example of...
Algorithmic Thinking
Name 4 of Santa's reindeer.
Rudolf, Dasher, Dancer, Prancer, Comet, Vixen, Cupid, Donner, and Blitzen
Which storage device uses magnetic spinning disks to read/write data?
HDD
What is the function of a GPU?
Handles graphics rendering to an output
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 -->
What is the primary the purpose of CSS?
It styles and positions elements of a webpage.
or simply STYLE and POSITION
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".
What is the most streamed Christmas song?
"All I Want for Christmas Is You"
What connects the CPU, memory, and other hardware components in a computer?
Motherboard
What is the primary job of the CPU?
Gives commands to other components of the computer
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
What CSS property and value can be used to change the flow of an html document from vertical to horizontal?
display: flex
or FLEX
What does it mean to "call" a function?
To execute / activate a function or to run the code inside a that function.
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
What is the function of a GPU?
Handles graphics rendering to an output
What four things are common to all computers?
Input, Output, Processing, Storage
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"/>
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;
}
What will be printed:
5
10
What will be printed:
if letter not in letters:
letters.append(letter) #Adds letter to letters list
print(letters)
['d', 'o', 'n', 'e']