In Java we can declare an array using the following:
String[] array = new String[10]; int size = array.length;
Does this mean that the arra
It would be important to note that arrays in Java have their own byte codes which they do not share with objects. They are certainly Objects, but are handled slightly differently at the low level.