Consider the code segment below. Which of the following statements is false? int[] g; g = new int[23]; ( )
A.The value of g[3] is -1.
B.The first statement declares an array reference.
C.The second statement creates the array.
D.g is a reference to an array of integers.