What Will Be The Output Of The Following Java Codep Pre #109
What will be the output of the following Java code?</p> <pre><code class="language-java" line="1"> 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); } }</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs128 Java. It can also be found in gs gs128 Java Operators Control Statements - Java Relational Operator and Boolean Logic Operators - Quiz No.1.
What will be the output of the following Java code?
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); } }
1
2
Runtime error owing to division by zero in if condition
Unpredictable behavior of program