Variables
Functions
Debugging
Programming
Just For Fun!
100

Contained in ' ' or " "

String

100

Function that outputs things to the screen

print()

100

what will this program print?

x="Hello"

y="there"

print("x","y")

x y

100

Python is a free, open-source programming language 

True or False?

True!

100

What holiday falls on April 1st?

April Fools Day!

200

What type of variable would you store the price of a Shamrock Shake in?

float

200

Function that gathers a user's answers to a question

input()
200

What is wrong in the code?

x = 4

y = 10

if x <= y 

     print("x is less than or equal to y")

else:

     print("y is lower than x")

There is no colon after the if statement

x = 4

y = 10

if x <= y:

     print("x is less than or equal to y")

else:

     print("y is lower than x")

200

What is the process of identifying and removing errors from computer hardware or software?

Debugging

200

How many computer scientists are women?

Only 20 percent of computer science and 22 percent of engineering undergraduate degrees in the U.S. go to women.

300

Name all 5 types of variables used in Python

Integer

Float

Character

String

Boolean

300

What is wrong with this function?

Print("I love Girls Who Code!!")

Capital P in Print

300

Why won't this work how we want it to?

number = input("What is your favorite Number?")

new_number = number + 10

number = int(input("What is your favorite Number?"))

new_number = number + 10

300

Name 2 other types of programming languages, other than Python

Java, JavaScript, HTML, Ruby, C, C#, C++, Scratch, etc.

300

What 3 fast food chains have the most locations globally?

Mcdonalds, Subway, and Starbucks

400

x = "$" 

What type of variable is this?

Character

400

The input function will automatically store input as what type of variable unless specified otherwise?

String

400

How do you comment something in python?

( so it is not recognized as code)

# I am a comment

400

What is an IDE?

integrated development environment

400

What is Marquette University's Mascot?

Golden Eagle

500

Name 3 restrictions on naming a variable

-Reserved Words

-Containing Spaces

-Number or symbol as first character

500

Could you think of another built in function that could exist in python?

max(), int(), abs(), len(), range(), min()

500

What is the function for nextline?

\n

500

What year was Python created?

1991

500

What company created the first cell phone?

Motorola