Chapter I

A. ArrayList list = new ArrayList(); B. ArrayList list = new ArrayList(); ... 9 Which method do you use to remove an element from a set or list named x? A. x.remove(element) B. x.removes(element) ... In this case, the method would throw java.lang.UnsupportedOperationException, a subclass of RuntimeException. E ... ................
................