What Will Be The Output Of The Following Java Programp Pre #307
What will be the output of the following Java program?</p> <pre><code class="language-java" line="1"> class Alligator { public static void main(String[] args) { int []x[] = {{1,2}, {3,4,5}, {6,7,8,9}}; int [][]y = x; System.out.println(y[2][1]); } }</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 Inheritance - Method Overriding in Java - Quiz No.1.