✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
In the following program, we assume that all variables are correctly declared and initialized. Which of the following statements is necessarily true?
if (a < b) {
result = a;
} else {
result = b;
}