what would be the name of class representing an array object? eg:
int a[] = new int[5]
here a is the reference variable. what is the name of class whoes object's reference id hold in a System.out.println(a.getClass().getName()) prints [I
is there any rule for naming?