✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
public class SomeClass {
public static void main (String [] args) {
int a [] [] = { {1, 2 }, {3 } };
int b [] [] = (int [] []) a.clone ();
a [0] = new int [] {0 };
System.out.println (b [0] [0]);
}
}
(Java)