Given:
4. class MyClass { 5. public static void main(String[] args) { 6. for(int __x = 0; __x < 3; __x++) ; 7. int #lb = 7; 8. long [] x [5]; 9. Boolean []ba[]; 10. } 11. }
What is the result?
Choose all that apply.
C and D are correct.
Variable names cannot begin with a #, and an array declaration can't include a size without an instantiation.
The rest of the code is valid.
A, B, and E are incorrect.