HTML
CSS
javaScript
Computer Basics
Random
100

What goes inside the <head> </head>

meta data such as the title of the website, links to external files such as css or javaScript files, and links to external libraries. 

100

If HTML is used to make the structure of a website then CSS is used for what? 

Styling and making the website pretty. HTML is like the skeleton while css is the skin. 

100

What is javaScript used for? 

To make a website interactive. 

100

What is a computer? 

A device used for calculation.

100

What does TikTok use to sort content for its users? 

Algorithms and Neural Networks. 

200
What goes inside the <body> </body>? 

The main content of your website. 

200

What is the best way to implement css into your website? 

external styling

200

Before I can edit an HTML element in javaScript, what must I do first? 

Declare it as a variable by writing

let variableName = document.querySelector(".className"); 

200

What does Bloom's Taxonomy measures? 

Levels of learning.
200

What is a filtered bubble? 

A state of intellectual isolation caused by personalized searches when algorithms selectively guesses the most pleasing content for the user

300
What is the purpose of using <div> </div>? 

To create divisions or sections in your websites so that you can easily edit parts of your website.

300

How would I change the background color using css? 

selector{ 

    property: value; 

}

body{ 

    backgroundColor: green; 

300

How do I make an edit to a string of html? 


elementName.innerHTML = "edit to string here"; 

300

What is used to determine if a computer is intelligent or not? 

Turing test and must pass with 80% 

300

What is confirmation bias? 

The tendency to search for, interpret, favor, and recall information in a way that confirms or supports one's prior beliefs or values



400

How do you add an image to a website? 

<img src = "link here>

400
How do I hide an element in css? What property and value must I use? 

selector{ 

    display: none; 

400

How do I make something interactive when a user clicks a button? 

buttonName.onclick=function(){ 

 }

400

What is an algorithm? 

A set of rules that takes an input, makes its calculation, and provide an output. 

400

How do you create a hyperlink? 

<a href="link here> Clickable Thing Here </a>

500

What is the difference between class and id? How are they called in CSS and javaScript? 

Class can be used with multiple elements while id is unique and can only be used with one singular element. 

class is called like this: .className

id is called like this: #idName

500

What happens when I run this? 

p{

    color:green;

    }

p{

    color:red;

    }

Any text in the <p> tag will be red since CSS stands for Cascading Style Sheet, it reads from top down meaning the property given will be the one shown. 

500

How do I make an image appear/disappear when a button is click? 

button.onclick=function(){ 

    className.style.display = "block";

}

button.onclick=function(){ 

    className.style.display = "none";

}

 

500

What is a neural network? 

A neural network replicates how the human brain thinks so that we can train artificial intelligence to learn. 

It has 3 layers: input, hidden, output. 

500

How do you comment in HTML, CSS and javaScript?

HTML: <!-- Comment here --> (multiple lines)

CSS: /* Comment Here */ (multiple lines)

javaScript: /*Multiple Line Comment*/ 

and //Single line comment