Which of the following is true about nested repetition structures?
A. both must be pretest loops
B. both must be posttest loops
C. each loop can be either pretest or posttest
D. one loop must be pretest and the other posttest
Answer: C
You might also like to view...
Which of these array definitions will set all the indexed variables to 0?
a)```
int array[5];
```
b)```
int array[5] = {0};
```
c)```
int array[5] = {0,1,2,3,4};
```
d)```
int array[5] = {0,0,0};x
<<;What is the x?
```
e)```
int array[5] = {0,0,0,0,0};x
<
On a Linux computer, what contains group memberships for the local system?
a. /etc/passwd b. /etc/shadow c. /etc/group d. /etc/fstab
Windows PE is used to access remote computers and create images of them
Indicate whether the statement is true or false
The ____ function converts all of the letters in a string to capital letters.
A. strtoupper() B. stringtoupper() C. strtolower() D. stringtolower()