Question: What is the output from the code set below? 3 public class Ex1Array 3D { 4 5 public static void main(String[] args) { 6 //

 What is the output from the code set below? 3 public

What is the output from the code set below? 3 public class Ex1Array 3D { 4 5 public static void main(String[] args) { 6 // TODO Auto-generated method stub 7 8 int[][] array3 = { 9 {{1,2,3},{4,5,6},{7,8,9}}, 10 {{10,11,12, }, {13, 14, 15},{16,17,18}}, 11 {{19,20,21}, {22, 23, 24},{25,26,27}} 12 }; 13 System.out.println(array3[1][1][2]); 14 } 15 16 ) O 2 O 11 O 15 17 24

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!