print(Marquette!)
Missing quotes
Corrected: print("Marquette!")
What is a boolean?
True or False
How would you write a print statement?
print("...")
Who founded Microsoft?
Bill Gates
What college of Marquette University is Girls Who Code run by?
College of Engineering
variable name = 10
Can't have spaces in variable name!
Corrected: variable_name = 10
What are the 6 different types of comparisons?
==, !=, >, <, >=, <=
How would you write a variable containing an input statement?
var = input("...")
Name 2 brands of computers
Apple, Microsoft, Acer, Lenovo, HP, etc...
What is the capital of Delaware?
Dover
x = 2
y = 4
print ("x + y")
Print statement should not be in quotation marks
Corrected: print(x + y)
What are the 5 data types?
boolean, string, int, float, char
How would you compare 8 being less than or equal to 13 in code
8 <= 13
Name 3 programming languages
Java, C, C++, R, SQL
What are our names?
Sydney, Julia, Varisha, Alyssa, Emma, Brigid, Danielle
name = "Emma"
print("Hi," name)
Missing , or + in between the string "Hi," and the variable name
Corrected:
print("Hi,", name)
print("Hi, " + name)
What is an algorithm?
The steps used to solve a problem in programming
Create a print statement that uses 2 variables
[WRITE ON BOARD]
What does WWW stand for? (On the Internet)
World Wide Web
Who is the first programmer?
Ada Lovelace
x = 4
if (x < 5)
print("success")
Missing colon
Corrected:
if (x < 5):
print("success")
What does syntax mean?
The grammar of a programming language
Write an if-elif-else statement
[WRITE ON BOARD]
What is the difference between HTTP and HTTPS?
"S" stands for secure -- safer version of HTTP
Who was the 3rd president of the United States?
Thomas Jefferson