Which are true about instance variables of a class (check all that apply): A. They should usually be declared private. B. Loop counters and other helper variables should be declared as instance variables so that such counters and helpers don't have to be re-declared local to every member method, individually. C. Mutators should protect them by filtering bad parameter values before assigning those values to them. D. Member instance methods of the same class must use mutator methods to modify their values. E. Member instance methods of the same class must use this. before their names in order to access them.