Consider the following program fragment
i=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
All Replies
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.