

InterviewSolution
Saved Bookmarks
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» None | |