Q47
Which of these is an incorrect array declaration?
A.
int arr[] = new int[5]
B.
int [] arr = new int[5]
C.
int arr[] = new int arr[5]
D.
int arr[] = int [5] new
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board