suppose a class has private data members but the setters and getters are in public scope. If you inherit from this class, you can still call those setters and getters -- ena
Because the getters and setters are public -- they're callable by anyone, not just derived classes.
public