Guide)
Association - Relationship between classes and objects (Abstraction and Composition)
Binary Search - Process of searching for an element in an array as long as they are in order and it
starts in the middle of the array, uses that as a key and searches from there.
ActionListener - Source on which an event (action that occurs as a result of the user) occurs,
generates a response to the event.
Aggregation - The concept of an object being composed of other objects.
Argument - Data that you pass into parameters.
Array Data Type Default Values - Primitive is 0, char is /u0000, and boolean is false.
Array Structure - DataType[ ]ArrayName = new DataType[index];
Array.Length - Returns how many subscripts are in an array.
Attribute - Variables within a class.
Behavior - Another name for a method in reference to a Class
Break/Continue - Break ends a switch statement/loop, continue jumps back into it.
Casting - When you take an object type, and convert it to another object type.
Class - Self contained component that consists of methods and properties.