What type of structure is created when a pretest loop is inside another pretest loop?

A. integrated selection
B. nested repetition
C. iterative repetition
D. optional selection

Answer: B

Computer Science & Information Technology

You might also like to view...

The function int fact(int k) { return k*fact(k-1); if (k==0) return 1; }

A) computes the factorial on an integer k passed to it as parameter. B) returns the value 1 if it is passed a value of 0 for the parameter k. C) does not correctly handle its base case. D) works for all non-negative values of k, but not for negative numbers. E) None of the above

Computer Science & Information Technology

____ are blends between two or more colors, and they are very striking with type and typography.

A. Passes B. Gradients C. Mixes D. Groups

Computer Science & Information Technology