Which of the following are primitives?
int[] myField = new int[0]; Integer[] myField2 = new Integer[0];
D.
While int is a primitive, all arrays are objects.
One way to tell is that an array has a public instance variable called length.
Another way is that you can assign it a variable of type Object.
Option D is correct.