✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
In the following code snippet, we assume that all variables are correctly declared and initialized. Among the following statements, which one is necessarily true?
if (a > b) {
result = a;
} else {
result = b;
}