HTML
CSS
Python
JavaScript
Misc.
100

HTML is used mainly for

What is Web Development

100

This CSS property controls the color of text on a webpage.

What is color?

100

Python is good at this thing related to data.

What is data analysis?

100

What command is used to print something in the console?

What is print()?

100

A link that contains an address to another link.

What is A Tag?

200

What do you need to put in the beginning of your code for HTML?

What is <!DOCTYPE html>

200

This property changes the size of text, often using values like px, em, or rem.

What is font-size?

200

This is the correct syntax for printing something in the console.

What is print()?

200

Is JavaScript considered a statically typed or dynamically typed language?

What is dynamically typed?

200

A property used to make sure that text will fit on the screen regardless of the device.

What is Overflow Property?

300

The tag used to create the largest heading

What is <h1>?

300

This layout model allows elements to align in rows or columns and is activated with display: flex.

What is Flexbox?

300

This function allows developers to add explanatory notes, temporarily disable code, or create documentation without affecting the program's execution.

What is a comment?

300

In what year was JavaScript created?

What is 1995?

300

A test done on a small unit of code to test if the code works like it’s intended to.

What is Unit Test?

400

What does HTML stand for?

What is Hypertext Markup Language?

400

This CSS feature lets you apply styles only when the screen meets certain conditions, like width or height.

What are media queries?

400

This statement is a core control flow statement that allows a program to make decisions and execute specific blocks of code and where if one thing happens, then another happens?

What is an if..then statement.

400

What is JavaScript used for? Making games, making a website, or making a website interactive?

Making a website interactive.

400

A variable that cannot ever be changed throughout its use in code.

What is Constant?

500

Give an example of an HTML attribute

What is src, alt, href, ...?

500

This CSS rule allows one element to inherit styles from another without repeating code, using the @ symbol.

What is @import?

500

In the context of file management, a built-in function that adds content to an existing file.

What is Append Function?

500

Variables declared with this keyword are function-scoped, not block-scoped.

What is var

500

A line of code that calls a function and provides needed arguments for said function when applicable.

What is Call Signature?