Kizspy | Question: 36 (Choose 1 answer)
Given the following code snippet:int[] arr = new int[100];ArrayList<Integer> al = new ArrayList();Choose the correct statement.
A. arr can not change its length whilst al can change its length
B. arr might change its length, but al cannot change the length
C. arr and al will have fixed lengths throughout the program
D. Access the first element of them by using al[0] and arr[0]