Which of the following for loop headers will cause the body of the loop to be executed 100 times?

a)```
for(int i = 0; i <= 100; i++)
```
b)```
for(int i = 1; i < 100; i++)
```
c)```
for(int i = 1; i <= 101; i++)
```
d)```
for(int i = 0; i < 100; i++)
```
e) none of these for loops will execute the loop body 100 times

d)```
for(int i = 0; i < 100; i++)
```

Computer Science & Information Technology

You might also like to view...

PDF stands for ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

Match the following terms to their meanings:

I. database II. table II. record IV. field V. object A. complete set of fields about one person, place, event, or concept B. smallest data element of a table C. collection of organized data D. the main component used to make a database function E. an object in which data is stored

Computer Science & Information Technology