Question: Consider the following code segment. ArrayList oldList = new ArrayList(); oldList.add(100); oldList.add(200); oldList.add(300); oldList.add(480); ArrayList newList = new ArrayList(); newlist.add(oldlist.remove(1)); newList.add(oldlist.get(2)); System.out.println(newlist); What, if anything,
Consider the following code segment. ArrayList oldList = new ArrayList(); oldList.add(100); oldList.add(200); oldList.add(300); oldList.add(480); ArrayList newList = new ArrayList(); newlist.add(oldlist.remove(1)); newList.add(oldlist.get(2)); System.out.println(newlist); What, if anything, is printed as a result of executing the code segment? A [120, 300, 400) B [200, 300] 1200, 400) Nothing is printed because the code segment does not compile Nothing is printed because an IndexOutOfBoundsException will occur Consider the following code segment. ArrayList animals - new ArrayList(); animals.add("fox"); animals.add(e, "squirrel"); animals.add("deer"); animals.set(2, "groundhog"); animals.add(1, "mouse"); System.out.println(animals.get(2) + animals.get What is printed as a result of executing the code segment? ** + and mouse and fox B fox and groundhog groundhog and deer D fox and deer E souirrel and groundhog (); ArrayList conditionRating conditionRating.add(9.84); conditionRating.add(8.93); conditionRating.add(7.65); conditionRating.add(6.24); conditionRating.remove(2); conditionRating.set(2, 7.63); System.out.println(conditionRating); What is printed when this code segment is executed? [9.84, 7.63, 6.24] B [9.84, 7.63, 7.65, 6.24] (9.84, 8.93 7.631 19.84, 8.93, 7.63 5.241 19.84, 3.33.65331