What Would Be The Output Of The Following Code Snippet If #131
What would be the output of the following code snippet if variable a=10?</p> <pre><code class="language-java" line="1"> if(a<=0) { if(a==0) { System.out.println("1 "); } else { System.out.println("2 "); } } System.out.println("3 "); </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 Control Statements - Quiz No.1.