Which of these array declaration statements are not legal?.
Select the two correct answers.
(b) and (e)
The size of the array cannot be specified, as in (b) and (e).
The size of the array is given implicitly by the initialization code.
The size of the array is never specified in the declaration of an array reference.
The size of an array is always associated with the array instance (on the right-hand side), not the array reference (on the left-hand side).