How many times is the body of the loop below executed?

```
int counter = 1;
while (counter > 20) {
// body of loop
counter = counter - 1;
}
```

a. 19.
b. 20.
c. 21.
d. 0.

d. 0.

Computer Science & Information Technology

You might also like to view...

If a student receives an item shipped from an eBay auction and reports the box to be empty, this would be an example of ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

Form view allows changes to the data and layout

Indicate whether the statement is true or false

Computer Science & Information Technology