Multiple choice .net

Do...Loop is an iterative statement because it:

  1. selects a block of statements to run.

  2. runs the same block of statements repeatedly.

  3. selects a block of statements and runs it repeatedly.

  4. selects a block of statements and runs it a specified number of times.

  5. All of the above.

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

The Do...Loop is categorized as an iterative (looping) statement because its primary purpose is to execute a specific block of code repeatedly as long as (or until) a certain condition is met.