Question: Java Question 36 1 pts An ArrayList can dynamically change in size when new elements are added to it. It can grow as needed. True
Question 36 1 pts An ArrayList can dynamically change in size when new elements are added to it. It can grow as needed. True O False Question 37 1 pts Where does the add() method of the ArrayList class add an object? neither you cannot add without specifying a numeric position O to the beginning of the list O to the end of the list Question 38 3 pts After the code below is executed, what is the value stored in each index of list? ArrayList list = new ArrayList(); list.add(2); list.add(5); list.add(13); index 0 [Choose ] 13 5 none of these is correct 2 index 1 index 2 [ Choose Question 39 1 pts What does this method do? public static int method(ArrayList list) { int value 0; for(Integer i : list) { value++; } return value; } O nothing the code will not compile O counts the number of values in the ArrayList O none of these is correct O sums the values in the list Question 40 1 pts After the code below is executed, what is the contents of the list? ArrayList list = new ArrayList(); list.add(4); list.add(7); list.add(9); list.add(1, 3); 0 4,7,9,1 0 4,7,9,3 O 4.7.9.1 O 3,4,7,9 0 4.1,7.9 O 1,4,7,9 O none of these is correct O 4,3,7,9 Question 41 1 pts What type of error (if any) is in the code below? ArrayList words = new ArrayList(); words.add("apple"); words.add("banana"); words.size() 2; = O run-time error only compile time and run-time error O compile time error only none of these is correct (there are no errors)