Vidyalelo
Computer Science · Q92

Object Oriented Programming Using C++

Engineering and GATE · Computer Science · question 92

Q92

Which of the following while clause will stop the loop when the value in the age variable is less than the number 0?

A.
while age < 0
B.
while (age < 0)
C.
while age >= 0;
D.
while (age >= 0);
E.
while (age >= 0)
Answer

Answer: Option E

Solution

Answer: Option E
No explanation is given for this question Let's Discuss on Board