✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following code snippet:
public class RewardPointsAccount
{
private int currentRewardPointBalance;
private int level1Cutoff = 15000;
private boolean blnEliteCustomer;
. . .
public void setElite() {
int level1Cutoff = 15000;
if (blnEliteCustomer)
{
this.level1Cutoff = 12500;
}
}
}
Which of the following statements is true?