Arrays are objects which provide space to store up to its size of elements of specified type. An array's size can not be modified after the array is created.
int[] arr1 = new int[0];
int[] arr2 = new int[2];
int[] arr3 = new int[]{1, 2, 3, 4};
int[] arr4 = {1, 2, 3, 4, 5, 6, 7};
int len1 = ar...