answers verified to pass 2025
False - correct answer ✔The loop control variable is initialized after entering
the loop.
False - correct answer ✔In some cases, a loop control variable does not
have to be initialized.
True - correct answer ✔You can either increment or decrement the loop
control variable.
False - correct answer ✔An indefinite loop is a loop that never stops.
False - correct answer ✔When one loop appears inside another is called an
indented loop.
True - correct answer ✔Forgetting to initialize and alter the loop control
variable are common mistakes that programmers sometimes make.
True - correct answer ✔Every high-level computer programming language
contains a while statement.
True - correct answer ✔Both the while loop and the for loop are examples of
pretest loops.
False - correct answer ✔The safest action is to assign the value 1 to
accumulators before using them.