Ask Question

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

True False

+2
Answers (1)
  1. 24 January, 06:32
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers