80.8k views
2 votes
Let's say that you want to create a new Integer array with a size of 56. Pick the array that would accomplish this:

int[] array = new int[7];
String[] array = new String[56];
float[] array = new float[54];
double[] array = new double[56];
int[] array = new int[56];

1 Answer

1 vote

int[] array = new int[56]

We want to create a new array, made up of integers, and of size 56. Each of the parts are represented by the answer choice above.

Hope this helps! :)

User Nico Prat
by
6.9k points