How many times is the loop body of the while statement executed?

```
z = 0;
g = 0;
s = 0;
i = 0;
while (i < 50) {
scanf("%d", &t);
s = s + t;
if (t >= 0)
g = g + 1;
else
z = z + 1;
i = i + 1;
}
```
a. once
b. never
c. 49 times
d. 50 times
e. until a number 50 or larger is entered

d. 50 times

Computer Science & Information Technology

You might also like to view...

In the accompanying figure, the value $19.33 in the column labeled Hourly Pay Rate is formatted with a ____ dollar sign.

A. fixed B. formatted C. floating D. none of the above

Computer Science & Information Technology

Which effect applies a three-dimensional effect to a two-dimensional object?

What will be an ideal response?

Computer Science & Information Technology