CS Fundamentals
Python
HTML/CSS
JavaScript + the Internet
Women in Tech
100

It's a kind of loop that allows you to repeat a block of code a set number of times.

What is a for loop?

100

It's the keyword you need to use to write a function in Python.

What is def?

100

It's the tag you need to use if you want to put text in its own paragraph. 

What is p?

100

It's the keyword you use to define a variable in JavaScript. 

What is var?

100
This is the first name of the founder of Girls Who Code. 

Who is Reshma?

200

It's a datatype that allows you to write text contained in quotations marks.

What is string?

200

This is the value of the following boolean expression: (not False) and True

What is True?

200

It's the difference between id's and classes in HTML.

What is id's are unique and can only be used on one tag?

200

It's a website that you can use for version control of a project.

What is GitHub?

200
Born in 1815, she was a mathematician and writer known for writing instructions for the first computer program.

Who is Ada Lovelace?

300

It's code that the computer ignores, but humans read so they understand what your code is doing.

What are comments?

300
A data structure that allows you to map keys to values. 

What is a dictionary?

300

Cascading this - it's what CSS stands for.

What is style sheet?

300

It allows you to use software that other developers have designed in your website easily and effectively. 

What is an API?

300

Depicted in the 2016 movie "Hidden Figures," this woman's calculations were critical to the success of the first and subsequent U.S. manned spaceflights. 

Who is Katherine Johnson?

400

It's a term that refers to when you create a new variable and set it equal to a value (ex. var x = 3;)

What is initializing?

400

It's what's wrong with this code:

x = 0

while x != 5:

x *= 2

What is the loop never ends?

400

It's what HTML stands for.

What is hypertext markup language.

400

It's the line of code that connects your HTML file to a javascript file called example.js.

What is <script type="text/javascript" src="example.js"></script>?

400

It's the percent of computer science majors who were women in 2017 (within 5%).

What is 17%?

500

It's the relationship between the length of a list and the index of the final element in a list.

What is the length of a list is one plus the final index of the list?

500

It's the value of x after you run this code:

x = 0

for i in range(5):

x += i

What is 10?

500

These are the 4 tags needed for an HTML file.

What are <html>,<head>,<body>, and <title>

500

It's what you have to host a website on for other people to access it on the internet.

What is a server?

500

In the 1950's, she lead a team that developed the first compiler for computer programs. She know has an annual conference named after her.

Who is Grace Hopper?