Strings
Variables
Data Operators/Conditionals
Loops/Lists
Random Knowledge
100

What will this output: print ("Hi, my name is Bob.")

What is Hi, my name is Bob.

100

What will this output?

x=15

print (x)

What is 15?

100

What will this output:

print (100/25 + 5)

What is 9?

100

fav_food=["pizza", "pineapple", "pasta"]

print (fav_food[1])

What is pineapple?

100

What famous/popular book is about a boy with a lighting scar on his forehead?

What is Harry Potter?
200

What are strings surrounded by? 

What are double quotes or single quotes?

200

What will this output?

y=16+3

print (y)

What is 19?


200

What operator outputs the remainder of the division?

What is modulus or mod (%)?
200
fav_movies = ["Frozen", "Lion King", "Mulan", "Sing"]

print (fav_movies[-3:-1])

What is ["Lion King", "Mulan"]?

200

What is the second planet from the Sun?

What is Venus?

300

This type of error occurs when you do not follow the rules of coding.

What is a syntax error?

300

x=10

z=50

print (x+x+z)

What is 70?

300

What will this output:

x=10

if (x=="10"):

    print ("True")

else:

    print ("False")



What is false?

300

x=10

while x>0: 

    print (x)

    x=x-2


What is:

10

8

6

4

2


300

If the user inputs the book, percy jackson, what will be the output?

user=input ("Favorite book?\n")

if (user=="Percy Jackson"):

    print ("Me too!")

else: 

    print (" I will add that to my reading list.")

What is I will add that to my reading list?
400

What will this output: print ('This is Bob's bobcat')

What is a error?

400

What will this output:

x="10"

print (x+10)

What is error?

400
What will this output:


z=15

if (z=15):

    print ("True")

else:

    print ("False")


What is error?

400

i=5

while (i>2):

    print (i)

    i=i+1



What is infinite loop? aka goes on forever

400

Who is third president in the United States?

Who is Thomas Jefferson?

500

What will this output:

for letter in "code":

    print (letter)

What is

c

o

d

e

500

x=5

x+=10

print (x)

What is 15?
500

y=32//5
if (y == 6.4):
    print ("1")
elif (y==2):
    print ("2")
else:
    print ("3")

What is 3?

500

for i in range (5,30,-2):

    print (i)

print ("hello")

What is hello?

500

What is the part of speech of 'Sally' in the sentence:

Sally sells seashells in the seashore.

Challenge (Bonus 100 points): What type of this part of speech is 'Sally'?

What is noun?


Challenge: What is Proper Noun?

M
e
n
u