Given the following class definition, which of the following are NOT considered part of the class’s public interface?
public class CashRegister
public static final double DIME_VALUE = 0.1;
private static int objectCounter;
public void updateDimes(int dimes) {...}
private boolean updateCounter(int counter) {...}

a. DIME_VALUE and objectCounter
b. updateDimes and updateCounter
c. objectCounter and updateCounter
d. DIME_VALUE and updateDimes



Answer :

Other Questions