Ask Question
18 May, 11:54

In an infinite while loop, the expression controlling the loop will initially evaluate to false, but after the first iteration it will always evaluate to true.

Select one:

True

False

+5
Answers (1)
  1. 18 May, 15:21
    0
    False

    Explanation:

    To iterate at least once the condition controlling the while loop must be true, and this is independent of the fact of being an infinite while loop or a normal while loop. If the condition is false the program will skip the while loop and will continue with the rest of the program. The way to create an infinite while loop is using a condition that always is going to be true, for example, while (3) or while (true). The value three is non zero meaning is always true, and true also is always true.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “In an infinite while loop, the expression controlling the loop will initially evaluate to false, but after the first iteration it will ...” 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