The structure used to loop over an array.
What is a for loop?
The symbol(s) that follow the method's name in the method declaration.
What are parentheses?
A template from which objects are created.
What is a class?
The library we will be using to display graphics and support a user interface.
What is Processing?
The index that all arrays in Java start at.
What is 0?
Indicates what datatype (if any) will be returned.
What is return type?
The method with the same name as the class itself that is responsible for creating a new instance.
What is a constructor?
The color scheme processing uses, representing a color as three integers.
What is RGB?
Used to find how many elements are in an array.
What is .length?
Indicates that a method will not return anything.
What is void?
These instance methods are used to get and set private instance fields.
What are getters/setters? What are accessors/mutators?
Processing method that tells Java what color to color in following shapes with.
What is fill?
An array of arrays.
What is a 2D-Array?
A keyword that can be used to end execution of the method early.
What is return?
A reserved keyword that means something that is the same across all instances.
What is static?
Processing method that sets the dimensions of the screen.
What is size?
Arrays are stored in this kind of memory, each cell of memory is physically next to one another.
What is contiguous memory?
The statement in which we invoke our method.
What is a method call?
Datatype of images uploaded with the loadImage method.