What Will Be The Output Of The Following Java Programp Pre #250
What will be the output of the following Java program?</p> <pre><code class="language-java" line="1"> class Output { public static void main(String args[]) { int a1[] = new int[10]; int a2[] = {1, 2, 3, 4, 5}; System.out.println(a1.length + " " + a2.length); } }</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 Classes Methods - Java Arrays Revisited & Keyword static - Quiz No.1.