Random
Width/Height
Shape
Color
Bonus: Solve the Jokes and outputs
100

What color is in the center of this Rect? Rect(50, 50, 100, 100, fill=gradient('red', 'blue'))

Red

100

What is my width? Rect(10, 20, 30, 40) 

30

100

What shape am I making with these parameters(left, top, width, height)

Rectangle

100

What color am I: rgb(255, 0, 0)

red

100

What fish do dogs chase?

Catfish

200

If you want the text outlined only and not filled with any color, what word do you put next to fill?

Label('This has a red border!', 200, 250, size=36, fill=_______________, border='red')

None

200

What is the width: 

left-top corner at (10, 20)

the right-bottom is at (40, 60).  

30 because 40-10 = 30

200

What shape am I making with these parameters(centerX, centerY, radius)

Circle

200

What color am I: rgb(0, 0, 0)

black

200

How do you get rid of varnish?

Take away the R

300

Can you use a gradient on a label?

Yes

300

What is the height: 

left-top corner at (10, 20)

the right-bottom is at (40, 60).  

40 because 60 - 20 = 40

300

What shape am I making with these parameters(x1, y1, x2, y2)

Line

300

What color am I: rgb(0, 0, 255)

blue

300

What is full of holes but can hold water?

A sponge

400

Is a 4-sided regular polygon drawn the same as a square?

No

400

What are my coordinates:

Rectangle that starts at y = 150 and width = 50

with a x = 0 and height = 20

Rect(0, 150, 50, 170)

400

What shape am I making with these parameters(value, centerX, centerY)

Label

400

What color am I: rgb(0, 128, 0)

green

400

Double the points:

What is the output: 

print("Hello")

Hello

500

What happens if you draw a star with roundness larger than 100?

A. error that the roundness is too large

B. star draws with a roundness of 100

C. circle is drawn instead

D. no error, but the star is not drawn 

A

500

What is the width: Arc(200, 200, 50, 70, 30, 90)

50

500

What shape am I making with these parameters(centerX, centerY, radius, points)

Star

500

What order do custom colors go in?

rgb, rbg, bgr, or brg

rgb

red, green, blue

500

What is the output?

print("I won.")

I won.