anything outside of the class
public
can only be used within the class
private
not used this at this time
protected
What is the naming convention for variables?
Variables start with a first letter.
What is the naming convention for classes?
Classes start with a capital first letter.
What is the naming convention for methods?
Methods start with a lower case first letter.
What is the difference in visibility of classes?
public: anything outside of the class.
private: can only be used within the class.
projected: not used at this time.