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?
It's the keyword you need to use to write a function in Python.
What is def?
It's the tag you need to use if you want to put text in its own paragraph.
What is p?
It's the keyword you use to define a variable in JavaScript.
What is var?
Who is Reshma?
It's a datatype that allows you to write text contained in quotations marks.
What is string?
This is the value of the following boolean expression: (not False) and True
What is True?
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?
It's a website that you can use for version control of a project.
What is GitHub?
Who is Ada Lovelace?
It's code that the computer ignores, but humans read so they understand what your code is doing.
What are comments?
What is a dictionary?
Cascading this - it's what CSS stands for.
What is style sheet?
It allows you to use software that other developers have designed in your website easily and effectively.
What is an API?
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?
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?
It's what's wrong with this code:
x = 0
while x != 5:
x *= 2
What is the loop never ends?
It's what HTML stands for.
What is hypertext markup language.
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>?
It's the percent of computer science majors who were women in 2017 (within 5%).
What is 17%?
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?
It's the value of x after you run this code:
x = 0
for i in range(5):
x += i
What is 10?
These are the 4 tags needed for an HTML file.
What are <html>,<head>,<body>, and <title>
It's what you have to host a website on for other people to access it on the internet.
What is a server?
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?