Represented by 0 or 1
What is a bit?
What is break?
Punctuation that is used to define an array
What are brackets?
The class that inherits the properties
What is the subclass?
What is an integer?
The address of a website located on the world wide web
What is URL?
Loop that runs until a condition is not true
What is a while loop?
Can only be used to store objects, not primitive types
What is an ArrayList?
The class that gives the properties to another class
What is the superclass?
Primitive type for decimals
What is a double?
When the code is written poorly, so the program cannot run
What is a syntax error?
What is a for loop?
Method used to find the size of an array
What is the .length method?
The keyword used for inheritance
What is extends?
Gives the value of the remainder of dividing two numbers
What is modulus?
A sequence of 8 bits
What is 1 byte?
Can be used to iterate through arrays
What is an enhanced for loop?
Method used to find the size of an ArrayList
What is the .size() method?
The keyword to call the superclass
What is super?
Turning a number of one primitive type into a different primitive type
What is casting?
An algorithm that searches a sorted list for a value by repeatedly splitting the list in half
What is binary search?
Can be used to iterate through rows and columns (2d arrays)
What is a nested for loop?
Does not have a fixed number of items stored in the list
What is an ArrayList?
Keyword when a subclass has it's own method that is used rather than the superclass method
What is override?
Method used to get a random number in Java
What is Math.random()?