Floating point and integers are examples of this.
What is primitive data?
Step-by-step process
What is an algorithm?
This is the blueprint for object.
What is an object?
Stores an ordered list of primitive values or objects.
What is an array?
The official term for a child class.
What is "subclass"?
Two words for a series of chars.
What are "string literals"?
In programming, the order of statement execution.
What is flow control?
Range variables can execute in.
What is scope?
Identifies each array element.
What is an index?
This keyword is used to refer to a parent class's constructor.
What is "super"?
These are found inside method parenthesis.
What are parameters?
This operator is used to compare integers.
What is ==?
Modifies an object's access.
What is public and private?
True or false: Arrays only contain different types of primitive data.
What is false?
This keyword refers to the child class's parent.
What is "extends"?
“*” executing before “+” is an example of this.
What is operator precedence?
When one control structure is inside another.
What is nesting?
Sends back a method's values.
What is "return"?
A binary search can only use a sorted array, true or false?
What is true?
This class can't be instantiated.
What is "abstract"?
This is remainder arithmetic for integers.
What is modulus?
Boolean results are displayed in this.
What is a truth table?
Used to initialize an object.
What is a constructor?
Method used to determine the number of elements in a one dimensional array.
What is ".length"?
This is how a private variable can be accessed.
What is an "indirect reference"?