Which of the following while clause will stop the loop when the value in the age variable is less than the number 0?
while age < 0
while (age < 0)
while (age >= 0)
while age >= 0;
Correct Answer: C — while (age >= 0)
Explanation:
No explanation is available for this question yet.