Ask Question
8 October, 16:56

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

+4
Answers (1)
  1. 8 October, 17:23
    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 & 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