A
Q. What will be the output of this code?
for (int i = 0; i < 5; i++) {
if (i == 3) break;
System.out.print(i);
}
- Correct Answer - Option(C)
- Views: 5
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.