12345678910



Question 1: Which of the following statements gets the number of integers in the array that follows?
int[] customers = new int[55];

1. int size = customers.length();
2. int size = customers.length;
3. int size = customers.size();
4. int size = Arrays.size(customers);