Which of these array declarations and initializations are NOT legal?
Select 2 options
Correct Options are : B E
If you explicitly specify the members then you can't give the size.
So option 2 is wrong.
The size of the array is never given during the declaration of an array reference.
So option 5 is wrong.
The size of an array is always associated with the array instance, not the array reference.