What is a Getter?
String is an example of this.
What is a reference object?
This is otherwise known as a Mutator.
What is a Setter?
A program that translates Java Source code into Java Byte Code (i.e. what we see on the IDE).
What is a Compiler (in Java)?
This retrieves the number of elements in an arrayList.
What is .size()?
A Java term that is used to indicate that a reference does not currently refer to any object.
What is a Null Reference?
The fundamental concept of OOP: a specific instance of a class.
What is an Object?
Single parameter substrings will end at this value.
What is .length? (or .size if used in such a way)
This returns the remainder of a division operation.
What is Modulo?
This method returns a Double as a double.
What is doubleValue()?
An array that uses two indices to specify the location of an element.
What is a Two-Dimensional Array