What would be a good initial value for a score in a game?

1

None of the above

100

0

100

Variables that track important data in a game are known as game ___.

variables

state

scores

loops

state

How can we represent the value of dice (or coin faces) in Python?

None of the above

Using bool values

Using random numbers

Using images

Using random numbers

What function did we use to simulate rolling dice in today's app?

print()

float()

input()

int()

int()

___ is whether a number is even or odd.

Equity

Rarity

Parity

Arity

Parity

How did we use the D.R.Y. principle in this lesson?

We generalized repetitive code by moving it into a function.

We removed the game loop to reduce repetition.

We didn't use the D.R.Y. principle in this lesson.

We removed buggy logic from our program.