Java arrays of objects are valid (String[], Object[], etc.), contradicting A. Array elements ARE initialized to default values (null for objects, 0 for numbers, false for boolean) when created with 'new' - B is true. Arrays have fixed length and cannot be resized - C is false (no setSize method). Array length is a field 'arr.length', not a method - D is false.