Debugging (What is wrong with the code?)
Definitions
Code Writing
General
Random
100

print(Marquette!)

Missing quotes

Corrected: print("Marquette!")

100

What is a boolean?

True or False

100

How would you write a print statement?

print("...")

100

Who founded Microsoft?

Bill Gates

100

What college of Marquette University is Girls Who Code run by? 

College of Engineering 

200

variable name = 10

Can't have spaces in variable name!

Corrected: variable_name = 10

200

What are the 6 different types of comparisons?

==, !=, >, <, >=, <=

200

How would you write a variable containing an input statement?

var = input("...")

200

Name 2 brands of computers

Apple, Microsoft, Acer, Lenovo, HP, etc... 

200

What is the capital of Delaware?

Dover

300

x = 2

y = 4

print ("x + y")

Print statement should not be in quotation marks

Corrected: print(x + y)

300

What are the 5 data types?

boolean, string, int, float, char

300

How would you compare 8 being less than or equal to 13 in code

8 <= 13

300

Name 3 programming languages

Java, C, C++, R, SQL

300

What are our names?

Sydney, Julia, Varisha, Alyssa, Emma, Brigid, Danielle

400

name = "Emma"

print("Hi," name)

Missing , or + in between the string "Hi," and the variable name 

Corrected:

print("Hi,", name)

print("Hi, " + name)

400

What is an algorithm?

The steps used to solve a problem in programming

400

Create a print statement that uses 2 variables

[WRITE ON BOARD]

400

What does WWW stand for? (On the Internet) 

World Wide Web

400

Who is the first programmer? 

Ada Lovelace

500

x = 4

if (x < 5)

       print("success")

Missing colon

Corrected: 

if (x < 5):

print("success")

500

What does syntax mean?

The grammar of a programming language

500

Write an if-elif-else statement

[WRITE ON BOARD]


500

What is the difference between HTTP and HTTPS? 

"S" stands for secure -- safer version of HTTP

500

Who was the 3rd president of the United States?

Thomas Jefferson