✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
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;
}