Codesters
Variables
Math
Loops
Instructor
100

The actors (characters) in Codesters called?

What is a Sprite?

100

The codeword for Integer

What is an int?

100

The sum of 1 and 1

What is 2?

100

The codeword for a while loop

What is while?

100

First name of coding instructor

What is Cameron?

200

The line of code to create the character "person1"

sprite = codesters.Sprite("person1")

200

The codeword for String

What is a String?

200

The product of 6 and 7

What is 42?

200

The numbers printed out from

for counter in range(10):

   print(counter)

What is 0123456789 (each number on another line)?

200

Age of coding instructor

23

300

A line of code to set the Stage to a certain background

stage.set_background("summer")

300

The codeword for a number with a decimal

What is a float/double?

300

The answer to 49 % 6

What is 1?

300

The codeword for a conditional statement

if

300

Major of coding instructor

Computer Science

400

The line of code to pause the program for two seconds

stage.wait(2)
400

The codeword for a True or False variable?

What is a Boolean

400

The answer to (((43 % 4) - 1) > 4)

What is False?

400

The codeword for ending the loop early.

break

400

Name of coding instructor's dog

Toblerone

500

The line of code to flip the sprite (person is the variable name for the sprite) upside down

person.flip_up_down()

500
The line of code to use a global variable in a smaller section of your code.

global var

500

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?

500

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)?

500

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?


M
e
n
u