Partially List the correct ways of declaring an Array.
Answer options
A
int studentId[10];
B
String [ ] name [ ];
C
int studentId[ ];
D
String name[]=new String(10);
E
int [ ]studentId;
Correct answer: String [ ] name [ ];
Explanation
Quick AnswerThe correct answer is String [ ] name [ ]; because it directly addresses the core logic of Java Programming.
This question has been retained as-is due to its unique context.