Roll the Dice
Mad Libs
My Friends
100

1 and 6 are the _____ and _______ values that are possible

A) first and last

B) lowest and highest

C) specific and only


100

A letter, word, or sentence in quotation marks is called a...

String

100

Variables ______ in the code editor and not surrounded by quotes.

A) Blue

B) Orange

C) Red

D) Green

200

String ________ is adding two strings together with the + sign

A) Contemplation

B) Concentration

C) Concatenation

D) Convocation

200

What symbol do you use to concatenate (join) two strings?

A plus sign operator (+)

200

Why will this program cause an error?

A variable must be created before you can use it.

300

Turning an integer into a string by adding str() around the number is called?

A) Fishing

B) Casting

C) Wording 

D) Converting

300

Are you able to concatenate (Join together) a string and an integer?

No. You must cast it first by either using str() or int()

300

How can we fix this to say "my favorite food is pizza"?

Take the quotes off of "fav_food" so that it is a variable and not a string 

400

Is -15 a possible value for roll_1?

No this random.randint tool can only choose between 1 and 10

400

What stores the text that the user inputs in the ask command? 

A) Input Variable

B) Input String

C) Input Integer

D) Input Sprite

400

Briefly define what a variable does in a program.

It is a given name that stores a value.