This modifier denotes that a class member is not attached to any one object of that class
What is static?
These represents the behaviors of an object.
What are methods?
These methods are used to modify the values of private data members
What are setters?
The increment operator.
What is ++?
The blueprint for implementing objects of a given type.
What is a class?
Also called "remainder", the % is technically called this.
What is modulus ?
These comments define the expected state of an object after a method's execution
What are postconditions?
An operator that can be applied to two numbers, namely, types int and double.
What is an arithmetic operator?
Consists of a collection of related methods, either abstract or defaults, these cannot be instantiated. These are used for abstraction.
What are interfaces?
When a new class is created from another class, called a superclass, by absorbing the state and behavior of the superclass and augmenting with those with features unique to the new class
What is inheritance?
A run-time error that is thrown when an attempt is made to divide an integer by 0.
What is an ArithmeticException?
Non-static variables which are defined in a class outside any method, constructor or a block
What is instance data?