Member variable:
Member variables in a class?these are called fields. Member variable become the place to hold all necessary information about the class.
Example:
public class Employee { String name; int age; long ph: String email; }
public class Employee { String name; int age; long ph: String email; }