69. Consider the following code snippet:
public class RewardPointsAccount
{
private int currentRewardPointBalance;
private static int level1Cutoff = 15000;
...
}
If a program instantiates four objects using this class, which of the following statements will be true?
a) Each object will have a currentRewardPointBalance instance variable and a level1Cutoff instance variable.
b) All objects will share a single currentRewardPointBalance class variable and a level1Cutoff class variable.
c) Each object will have a currentRewardPointBalance instance variable, but all objects will share a level1Cutoff class variable.
d) All objects will share a currentRewardPointBalance class variable and each object will have a level1Cutoff instance variable.