

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program?
class Output { public static void main(String args[]) { int x , y = 1; x = 10; if (x != 10 && x / 0 == 0) System.out.println(y); else System.out.println(++y); } } |
A. | 1 |
B. | 2 |
C. | Runtime error owing to division by zero in if condition |
D. | Unpredictable behavior of program |
Answer» C. Runtime error owing to division by zero in if condition | |