The definition of polymorphism. (HINT: Having ____ ____.)
What is having many forms?
An instance of a class.
What is an object?
How to add and subtract?
What is "+" and "-"?
Checking if something is "not".
What is "!"?
Stores integers (whole numbers) without decimals.
What is an int?
What is inheritance?
A template/ set of instructions that defines the behaviors for a specific type of object.
What is a class?
How to multiply and divide?
What is "*" and "/"?
Checking if something is equal to and not equal to.
What is "==" and "!="?
Stores floating point numbers or decimals.
What is a double?
The class whose properties are inherited from.
What is super/ parent class?
A block of code that performs a specific task.
What is a method?
How to increment / decrement?
What is "++" and "--"?
Checking if something is greater than and less than.
What is ">" and "<"?
Stores text.
What is a String?
The class(es) who inherit properties of another class.
Each code statement must end with a ___.
What is a semicolon?
What is "="?
Returns true if both statements are true.
What is "&&"?
Stores a single character such as 'a' or 'b'.
What is a char?
Example of when to call super().
super() can be used to invoke immediate parent class constructor.
These denote when a block of code begins and ends.
What are curly brackets ({})?
What is "%"?
Returns true if one of the statements is true.
What is "||"?
Stores values with two states: true/ false.
What is a boolean?