functions
variables
operations
100

What are the two functions we learned?

Print and Input

100

What are the 4 variables we learned?

Integers, Float, String, Boolean

100

What are the 4 operators we learned? + additional points to anyone who remembers 2 more!

+, -, *, /

// and %

200

What does a print function do?

allows the coder to print anything needed

200

How do you store something in a variable?

with a "=" sign

200

What's the difference between / and //?

/ shows answers in float and // answers in integers

EG. 5/2 = 2.5 while 5//2 = 2

300

What does an input function do?

allow users to input their answers + store them into a variable

300

What does 

animal = "dog" 

do?

makes computer recognize animal as dog from now on (in their world, all "animal" is "dog" from now!)

300
What's the answer to 10//3?

3

400

What are some possible places you can find an error when using functions? (name more than 1 to win!)

*the first letter capitalized in print() and input()

*a quote opened but not closed

*a variable not assigned to input

+ anything else??

400

What's the difference between:

name = "Irene" 

print(name)

VS 

print(Irene)?

print(name) will print Irene and print(Irene) will print an error because the computer doesn't know what Irene is!!
400

10%3 = ?

1

M
e
n
u