Global Variables
uMay need methods or variables that are independent of class instantiations
uUse keyword static
ØMember is instantiated when class is referenced for the first time
ØAct as global variables that are accessed by all instances of the class
ØAlso used with main() method in application classes
More advanced Java concepts