Arrays
Methods
OOP
Processing
100

The structure used to loop over an array.

What is a for loop?

100

The symbol(s) that follow the method's name in the method declaration.

What are parentheses?

100

A template from which objects are created.

What is a class?

100

The library we will be using to display graphics and support a user interface.

What is Processing?

200

The index that all arrays in Java start at.

What is 0?

200

Indicates what datatype (if any) will be returned.

What is return type?

200

The method with the same name as the class itself that is responsible for creating a new instance.

What is a constructor?

200

The color scheme processing uses, representing a color as three integers.

What is RGB?

300

Used to find how many elements are in an array.

What is .length?

300

Indicates that a method will not return anything.

What is void?

300

These instance methods are used to get and set private instance fields.

What are getters/setters? What are accessors/mutators?

300

Processing method that tells Java what color to color in following shapes with.

What is fill?

400

An array of arrays.

What is a 2D-Array?

400

A keyword that can be used to end execution of the method early.

What is return?

400

A reserved keyword that means something that is the same across all instances.

What is static?

400

Processing method that sets the dimensions of the screen.

What is size?

500

Arrays are stored in this kind of memory, each cell of memory is physically next to one another.

What is contiguous memory?

500

The statement in which we invoke our method.

What is a method call?

500
Writing a different implementation of an inherited method.
What is overriding?
500

Datatype of images uploaded with the loadImage method.

What is PImage?
M
e
n
u