Multiple choice

We can create infinite loop in C++ by omitting the ______________ expression.

  1. initialization

  2. test

  3. update

  4. none of these

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

This expression is used in loop statement to test the condition and if this statement is omitted, it can lead to infinity condition in the loop.