A
Q. What is printed by this loop?
int i = 0;
while (i < 3) {
System.out.print(i);
i++;
}
- Correct Answer - Option(A)
- Views: 8
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.