
1 and 6 are the _____ and _______ values that are possible
A) first and last
B) lowest and highest
C) specific and only
A letter, word, or sentence in quotation marks is called a...
String
Variables ______ in the code editor and not surrounded by quotes.
A) Blue
B) Orange
C) Red
D) Green
String ________ is adding two strings together with the + sign
A) Contemplation
B) Concentration
C) Concatenation
D) Convocation
What symbol do you use to concatenate (join) two strings?
A plus sign operator (+)

Why will this program cause an error?
A variable must be created before you can use it.
Turning an integer into a string by adding str() around the number is called?
A) Fishing
B) Casting
C) Wording
D) Converting
Are you able to concatenate (Join together) a string and an integer?
No. You must cast it first by either using str() or int()

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

Is -15 a possible value for roll_1?
No this random.randint tool can only choose between 1 and 10
What stores the text that the user inputs in the ask command?
A) Input Variable
B) Input String
C) Input Integer
D) Input Sprite
Briefly define what a variable does in a program.
It is a given name that stores a value.