What was your favorite HTML project this year?
Anything! We coded websites, about me pages, gradients, valentines, and more!
What was your favorite Python project this year?
Anything! Some of the biggest ones include Mad Libs, poetry, and mini-quizzes!
What was your favorite Sphero or Makey Makey activity this year?
Anything! Popular ones include Sphero relay races, Sphero mazes, and free play with both activities!
What was your favorite GirlsCode activity this year?
Anything! We did a number of HTML, Sphero, Python, and Makey Makey projects throughout the meetings!
What header size prints the largest text?
h1
What is a real-world use of Python?
Countless things! Some of the most popular include artificial intelligence, data analysis and visualization, and software development!
What is a loop in computer science?
A loop is a block of code that is repeated back-to-back when executing your program. Common loops include for loops (repeat a certain amount of times) and while loops (repeat while a given condition is still true).
When does GirlsCode meet? (include day and time)
Every other Thursday at 7:25!
How many header sizes are there?
6 (h1, h2, h3, h4, h5, and h6)
In a line of code print the phrase, "Hello World".
print("Hello World")
What is a boolean?
A boolean is a data type that can only be defined as "True" or "False". For example, if you declare a boolean variable "isRed" it could only be defined as True or False.
Who are the presidents and vice president of GirlsCode for the 2022-2023 school year?
Evelyn Gehrig, Mia Rubenstein, and Rocky Bach
Write a line of code that prints "Hello World" in the size h3. Include opening and closing tags.
<h3> Hello World </h3>
Write a line of code that declares a variable "month" and set it equal to "April".
month = "April"
What is the purpose of an if-else statement?
An if-else statement allows the computer to choose between 2 (or more) segments of code to execute depending on a given condition. For example, in a program that decides your outfit, you could say if the temperature > 70 then print "wear shorts" if not, print "wear pants".
What room does GirlsCode meet in?
C214
Fill in the blank so that the code will change the background color to red. <body style=____>
"background-color: red"
or
"background-color #FF0000"
Write a line of code that declares a variable "age" and defines it as the user input to the question "How old are you?".
age = input("How old are you?: ")
Name three other coding languages that are not HTML or Python.
There is a wide variety of answers including Java, Javascript, C++, R, Swift, and many many more!
What event did GirlsCode host on Saturday, April 9th?
The annual Code-a-Thon!