Ask Question
30 January, 12:56

The condition that is tested by a while loop must be enclosed in parentheses and terminated with a semicolon

True False

+4
Answers (1)
  1. 30 January, 16:06
    0
    False

    Explanation:

    while loop is used to execute the statement again and again until the condition is TRUE.

    Syntax:

    initialization;

    while (condition)

    {

    statement;

    }

    we write condition within the parentheses but without terminate with the semicolon.

    Therefore., the answer is False
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “The condition that is tested by a while loop must be enclosed in parentheses and terminated with a semicolon True False ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers