Hierarchy of Applet Class IN java

Array elements are numbered the same as C++ numbering scheme. (0 ( n-1, where n is the array size.) myarray[0]=7. myarray[1]=198. myarray[2]=-225. myarray[3]=-75. myarray[4]=4. myarray[5]=118. myarray[6]=-36. myarray[7]=94. Every array is Java knows its own length and maintains this information in a variable called length. myarray.length ................
................