What Will Be The Output Of The Following Java Statementp Pre #8
What will be the output of the following Java statement?</p> <pre><code class="language-java" line="1"> class output { public static void main(String args[]) { double a, b,c; a = 3.0/0; b = 0/4.0; c=0/0.0; System.out.println(a); System.out.println(b); System.out.println(c); } }</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 Data Types Variables Arrays - Java Integer and Floating Data Types - Quiz No.1.