✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Trace the following code, what is the output?
int a[] = new int[10];
for(int i = 0; i < a.length; i++) {
a[i] = i * i;
System.out.println(a[i]);
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!