Answer:
False
Step-by-step 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.