The actors (characters) in Codesters called?
What is a Sprite?
The codeword for Integer
What is an int?
The sum of 1 and 1
What is 2?
The codeword for a while loop
What is while?
First name of coding instructor
What is Cameron?
The line of code to create the character "person1"
sprite = codesters.Sprite("person1")
The codeword for String
What is a String?
The product of 6 and 7
What is 42?
The numbers printed out from
for counter in range(10):
print(counter)
What is 0123456789 (each number on another line)?
Age of coding instructor
23
A line of code to set the Stage to a certain background
stage.set_background("summer")
The codeword for a number with a decimal
What is a float/double?
The answer to 49 % 6
What is 1?
The codeword for a conditional statement
if
Major of coding instructor
Computer Science
The line of code to pause the program for two seconds
The codeword for a True or False variable?
What is a Boolean
The answer to (((43 % 4) - 1) > 4)
What is False?
The codeword for ending the loop early.
break
Name of coding instructor's dog
Toblerone
The line of code to flip the sprite (person is the variable name for the sprite) upside down
person.flip_up_down()
global var
If there are 8 animals (can only be chickens and rabbits) and 20 legs. How many chickens and how many rabbits are there? (5 minutes and 200 extra points)
What are 6 chickens and 2 rabbits?
The console output for this code:
For counter in Range(10):
if counter > 5:
print(counter)
elif counter > 0:
print(counter + 1)
else:
print(counter)
What is 0234566789 (printed vertically)?
Use two rules to get x = 27 to 1. If it is odd, then 3x+1. If it is even, then x = x/2.
How many steps did it take to get to 1.
(You get 10 minutes for this one)
What is 111 steps?