CIW Exam Questions

What will be the output from the given statement?

Consider the following statement:
for ($count=0; $count < 5; $count++) {print “$count “}
What will be the output from the given statement?

A.
1 2 3 4 5

B.
5 10 15 20 25

C.
1 2 3 4

D.
0 1 2 3 4