Incorrect. In Java, you declare an array reference like int[] a or int a[]. You cannot specify the size in the declaration part (a[10]). Also, when allocating memory with new, you must specify the size inside the brackets (e.g., new int[10]) unless you are immediately initializing it with values (e.g., new int[]{1, 2, 3}).