Programming Basics
Input and Output
Shapes
Parameters
Debugging and Error Types
100

A place or container where we can store information that can change.

What is a variable?

100

What will be printed if x = 6 and the code is if x > 5: print("Yes") else: print("No")?

It will print: Yes.

100

This shape only needs two points, (x1, y1 & x2, y2).

What is a Line?

100

A flower is drawn where the mouse is clicked. The green stem is drawn using Line(x1, y1, x2, y2). What are the values of x1, y1, x2, y2.

What is mouseX and mouseY?

100

When the code is written incorrectly.

What is a syntax error?

200

These help explain what the code does so that people can understand it better.

What are comments or notes

200

This is used to display the output of your code.

What is the canvas?

200

This shape only needs x, y, & radius.

What is a circle?

200

Of the 4 arguments given: Rect(x, y, width, height, fill) This argument is OPTIONAL when using Rect()

What is fill?

200

This tool helps find and fix errors in code?

What is a debugger?

300

A symbol that starts a comment in Python.

What is the hash tag?

300

The canvas' x and y axis are both this many pixels.

What is 400 pixels long.

300

This shape only needs x, y, radius, & points.

What is a Star?

300

The code that results in a shape with no fill?

What is fill = None

300

This code won't run properly because of an error. 

Circle(200, 200, 50, fill = brown)

What is missing quotes?

400

This code will print a colored shape.

Circle(200, 200, 50, fill = 'red')


What is a red circle?

400

I want to see the blue border of my shape then I would add this argument.

What is border = 'blue'

400

This shapes location is the upper left corner and it needs width and height in order to be drawn properly.

What is a Rectangle?

400

Colors fading/transitioning into another color.

What is gradient fill?

400

A syntax error in the code below:

Rect 100, 200, 24, 25, fill = 'blue

What are missing parentheses?

500

Data stored as words in Python written as str.

What is a string?

500

These shapes both use the radius argument.

What is a Circle and a Star?

500

This color is the default color for a shapes.

What is black.

500

I use this property to make a shape more or less transparent.

What is opacity?

500

When you type something incorrectly and your code produces and error.

What is a syntax error?