The following is an infinite loop. Rearrange the statements so that the loop will terminate as intended.

```
x = 0
Do
lstBox.Items.Add(x)
Loop Until x > 13
x += 2
```

Move the last statement one line up, before the Loop Until statement

Computer Science & Information Technology

You might also like to view...

A ________ can be applied to a table that can be used to reference the table in formulas or to select the table

A) style B) name C) range D) filter

Computer Science & Information Technology

How many keywords does C++ have?

A. 142 B. 256 C. 63 D. 31

Computer Science & Information Technology