Home / CSE / Object Oriented Programming Using C++ :: Discussion

Discussion :: Object Oriented Programming Using C++

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

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

    View Answer

    Workspace

    Answer : Option E

    Explanation :

    No answer description available for this question.


Be The First To Comment