- What Is The Difference Between The Contents Of Array1 And Array2 After Initialization Integer Array1 New Integer 5 1 (30.3 KiB) Viewed 49 times
What is the difference between the contents of array1 and array2 after initialization: Integer[] array1 = new Integer [5
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
What is the difference between the contents of array1 and array2 after initialization: Integer[] array1 = new Integer [5
What is the difference between the contents of array1 and array2 after initialization: Integer[] array1 = new Integer [5]; int[] array2 = new int[5]; O array1 has null values while array2 has zeros. O no difference, they are both arrays full of null values. O array1 has zeros while array2 has null values. no difference, they are both arrays full of zeros.