多选题
What best describes the result of the following code segment? The
ArrayList sampleArrayList has already been declared and initialized.
int i = 63; sampleArrayList.add(i);
A. The int is successfully placed into the ArrayList.
B. The int is converted to an Integer via autoboxing and then placed into
the ArrayList.