A
Q. What is the output of the following program?
class Example {
public static void main(String args[]) {
int j;
do {
j++;
} while (j < 0);
System.out.println(j);
}
}
- Correct Answer - Option(A)
- Views: 25
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.