Accessing an object's field or method requires this symbol in client code.
What is a period(t)?
The term for the contents of the parentheses after the word if.
What is a boolean expression?
A class used to box primitive data.
What is a Wrapper Class
The name for statements that execute between the curly braces attached to an if, loop or method.
What is a statement block?
A collection of objects ONLY (cannot include primitives).
What is an Arraylist?
When methods execute, the values used for the arguments are stored into these.
What are local variables?
When a set of conditions are considered for an if/else if/else chain of conditional statements, some are more or less specific than others. This is the condition that should be checked first.
What is the most specific condition?
A way to iterate over array elements without knowing index values
What is a for-each (or enhanced for) loop?
The kind of method that gets instance data from an object
What is an accessor method?
The smallest primitive data type.
What is a boolean?
while(true) does this.
what is child abuse?
The ArrayList method to both alter and access an element
What is set?
The methods on the APCSA exam inherited from Object
equals, toString
The only required portion of the elements of a for loop header in Java.
What is the condition?
The minimum number of statements needed to move an element of an ArrayList to a new index, using only methods on the AP CSA exam.
What is one?
list.add(newIndex, list.remove(oldIndex));
The technique used to call a no-parameter constructor from a one-parameter constructor.
What is this()?