What will this output: print ("Hi, my name is Bob.")
What is Hi, my name is Bob.
What will this output?
x=15
print (x)
What is 15?
What will this output:
print (100/25 + 5)
What is 9?
fav_food=["pizza", "pineapple", "pasta"]
print (fav_food[1])
What is pineapple?
What famous/popular book is about a boy with a lighting scar on his forehead?
What are strings surrounded by?
What are double quotes or single quotes?
What will this output?
y=16+3
print (y)
What is 19?
What operator outputs the remainder of the division?
print (fav_movies[-3:-1])
What is ["Lion King", "Mulan"]?
What is the second planet from the Sun?
What is Venus?
This type of error occurs when you do not follow the rules of coding.
What is a syntax error?
x=10
z=50
print (x+x+z)
What is 70?
What will this output:
x=10
if (x=="10"):
print ("True")
else:
print ("False")
What is false?
x=10
while x>0:
print (x)
x=x-2
What is:
10
8
6
4
2
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 will this output: print ('This is Bob's bobcat')
What is a error?
What will this output:
x="10"
print (x+10)
What is error?
z=15
if (z=15):
print ("True")
else:
print ("False")
What is error?
i=5
while (i>2):
print (i)
i=i+1
What is infinite loop? aka goes on forever
Who is third president in the United States?
Who is Thomas Jefferson?
What will this output:
for letter in "code":
print (letter)
What is
c
o
d
e
x=5
x+=10
print (x)
y=32//5
if (y == 6.4):
print ("1")
elif (y==2):
print ("2")
else:
print ("3")
What is 3?
for i in range (5,30,-2):
print (i)
print ("hello")
What is hello?
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?