Each class declaration that begins with keyword public must be
stored in a file having the same name as the class and ending
with the .java file-name extension
Variables or methods declared with access modifier private are
accessible only to methods of the class in which they’re
declared
Declaring instance variables with access modifier private is
known as data hiding or information hiding.