The loop created by the For...Next statement is a ____ loop.

A. posttest
B. pretest
C. selection
D. sequential

Answer: B

Computer Science & Information Technology

You might also like to view...

Data that shows performance over time for periods such as years, quarters, or months is called ____________________ data.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Show the value of x after each of the following statements is performed:

``` a) x = fabs(7.5); b) x = floor(7.5); c) x = fabs(0.0); d) x = ceil(0.0); e) x = fabs(-6.4); f) x = ceil(-6.4); g) x = ceil(-fabs(-8 + floor(-5.5))); ```

Computer Science & Information Technology