Public class motorcycle{
Public static final int WHEEL_COUNT = 2;
Private int rpmRating;
Public void updatePrice(double increase){..}
Private String designCode{..}
}
a. rpmRating and designCode
b. WHEEL_COUNT and designCode
c. WHEEL_COUNT and updatePrice
d. updatePrice and designCode
Answer:
c. WHEEL_COUNT and updatePrice
Explanation
WHEEL_COUNT and updatePrice are not considered as a part of the public’s Class interface.