class Employee{ // salary variable is a private static variable private static double salary; // DEPARTMENT is a constant public static final String DEPARTMENT =
Obviously, you cannot access private static variable from outside the class, and you can access public static variable from everywhere.
private
public