Ask Question
2 February, 13:15

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

+1
Answers (1)
  1. 2 February, 17:11
    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?
Get 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 & 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