Answer:
(ii) int[] alpha = new int[25];
Explanation:
In JAVA in order to create an array;
int name[];
name = new int[size];
can be written like above, however, to make it shorter can be written like below;
int[] name = new int[size];
<em>Well, name is the array name you assign, int is the type of an array as integer and size you assign for an array, in that sense </em><em>(ii)</em><em> is the correct answer</em>
(ii) int[] alpha = new int[25];
alpha is the name of an array
int is the type of array as an integer
25 is the size of an array