Ask Question
24 January, 02:31

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

True False

+3
Answers (1)
  1. 24 January, 04:25
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers