Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Which of the following declarations will cause a compile time error?
String[] arr = new String("10");
int[] arr1 = null;
int[][] arr = { {} };
String[] obj = new String[];
int[] arr[] = new int[5];
String[] arr = { 5, 3, 2 };
int[] arr = { 50, 90, 85 };
Object[] arr = new String[10];
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!