Consider the following array What is the length of the array
     Consider the following array:  What is the length of the array?  What is the range of indices (plural of index) in yourArray?  What is the value returned by typing yourArray?  How would you access the element stored at index 5 of yourArray?  What error occurs if you try to access an element that is not in an array\'s range? 
  
  Solution
1. Length of the array=8
2. Range of indices 0 to 7
3. value returned by typing yourArray
[0]=7
[1]=11
[2]=4
[3]=6
[4]=13
[5]=20
[6]=0
[7]=8
4. yourArray[index_of_the_element]
5. Program will terminate with an “array index out of bounds” exception.

