HIDING IMPLEMENTATION DETAILS
What is Encapsulation ?
THIS INITIALIZES MY STATE
What is Constructor ?
used to pass data into a method
What is Parameter ?
WHEN A CONSTRUCTOR IS CALLED
What is whenever a new object is created ?
Returns a random number between 5 and 10 inclusive.
What is (int)(Math.random() *6) + 5 ?
CLASS THAT CALLS CODE IN ANOTHER CLASS
What is Client ?
THIS LETS CLIENTS PRINT ME
What is toString() method ?
KEYWORD USED TO INDICATE THAT A METHOD CAN BE CALLED FROM THE OTHER CLASSES
What is Public ?
initializes the instance variables of a class
What is Constructor ?
!a || !b == !(a && b)
What is true ? / What is De Morgan’s law ?
a variable that is either true or false
What is boolean ?
THIS LETS CLIENTS GET MY STATE
What is Accesor or Getter ?
when two Strings are joined together
What is Concatenation ?
HEADER OF THE DEFAULT CONSTRUCTOR
What is public Classname( ) ?
This type of error is noticed during compile time such as missing a semicolon.
What is syntax error ?
a primitive data type used to store a number with a decimal point
What is double ?
THIS LETS CLIENTS CHANGE MY STATE
What is Mutator or Setter ?
PRIMITIVE DATA CAN BE MADE UNCHANGEABLE USING THIS MODIFIER
What is Final ?
DEFAULT VALUE FOR OBJECT TYPE FIELDS
What is null ?
A valid Java identifier (variable name) may include letters, numbers, underscore, $. Which can it not begin with ?
What is #?
CLASS BEHAVIOR THAT USES AN IMPLICIT OBJECT
What is Instance Method ?
THESE KEEP TRACK OF MY STATE
What is Instance Variables or Fields ?
YOU CAN == or PRINT THIS BUT NOT CALL METHODS ON IT
What is null ?
EVERY CONSTRUCTOR RETURNS THIS
What is nothing ☺ ?
Sort by finding the lowest value in the unsorted part of the list and putting it after the last value of the sorted part of the list.
What is Selection sort ?