Arrays are static memory allocation, so if you initialize an array of integers:
int[] intArray = new int[15];
The length will be always 15, no matter how many indexes are filled.
And another thing, when you intialize an array of integers, all the indexes will be filled with "0".