When declaring an array, for example

 
  float the_array[12]; 
the number specified in the square brackets is:
  1. The size of the array.
  2. One more than the size of the array.
  3. One less than the size of the array.
  4. The index of the last element of the array.

Answer: The size of the array.