✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
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?