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...

In a bus topology, only the device for which a signal is intended can hear the sent data signal

Indicate whether the statement is true or false

Computer Science & Information Technology

A(n) ________ occurs when a user takes an action

A) event B) class C) method D) trigger

Computer Science & Information Technology