QuestenaPractice that shows what to review next
Question 98

A while loop's condition is false at its very first check. How many times does its body run?

  1. Exactly once
  2. Zero timesCorrect answer
  3. Until a break statement appears
  4. Infinitely many times

Explanation

A while loop tests its condition before entering the body, so a false initial test permits zero iterations. The claim that the body must run once describes do...while, which places its test after the body.

Continue with this test

Start practice
Question 98: A while loop's condition is false at its very first check.… · JavaScript Fundamentals · Questena