A.int []a[]=new int[10][10]; B.int a[][]=new int[][]; C.int [][]a=new int[10][10]; D.int a[][]=new int[10][10];
A.byte B.double C.boolean D.string
A.document.getElementById("divResult").color=red; B.document.getElementById("divResult").style.color=#10011; C.document.getElementById("divResult").color=“red”; D.document.getElementById("divResult").style.color=“red“;