1.

Consider the following program fragmenti = 6720; j = 4;while ((i % j) == 0){i = i / j;j = j + 1;}on termination j will have the value

A. 4
B. 8
C. 9
D. 6720
Answer» D. 6720


Discussion

No Comment Found