Java SE 8 Programmer 1Z0–808 Practice Full Test 1

© examsiri.com
Question : 34 of 84
 
Marks: +1, -0
Given the code fragment:
int num [ ] [] = new int[1] [3] ;
for (int i = 0; i < num.length; i++) {
  for (int j = 0; j < num[i].length; j++) {
    num[i][j] = 10;
  }
}

Which option represents the state of the num array after successful completion of the outer loop?
Go to Question: