Consider the following line of code:
int[] x = new int[25];
After execution, which statements are true? (Choose all that apply.)
Click to view the answer
A, E.
The array has 25 elements, indexed from 0 through 24.
All elements are initialized to 0.