A
Q. What is the output of the following code?
int i = 0;
while(i < 3) {
System.out.print(i);
i++;
}
- Correct Answer - Option(B)
- Views: 10
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.