Kizspy | Question: 9
(Choose 1 answer)
What is the output of the following code snippet?
public static void main(String[] args) {
int[] arr={{1,2,3}, {4,5,6,6}, {6,7,8}};int copy={9,10,11,12);
arr[2]=copy;
System.out.println(arr[2][2]);
}
A. 11
B. 8
C. 6
D. 9