Answer:
(ii) int[] alpha = new int[25];
Step-by-step 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];
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 (ii) is the correct answer
(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