What are Arrays of objects initialized to?
Null.
This is not the same as nothing.
Can a superclass reference be assigned to a subclass reference variable?
Yes, but only if it is derived from the superclass. Even then it needs a cast.
Can you put array size information on the left hand side of an asignment operator?
char foo[2][1] = new char [ ] [ ] { {‘b’, ‘a’}, {‘r’} };
Good God, no.
Can an array of Objects hold an array of integers?
Object [ ] o = new int [10];
No, of course not.
Is an array of integers an Object?
Object obj = new int [ ] { 1, 2, 3 };
Why yes, it is.
What will the isArray( ) method of an array class return?
True.