What is the output of the following code?
```
ArrayList
list.add(1);
list.add(2);
list.add(3);
list.remove(2);
System.out.println(list);
```
a. [1, 2, 3]
b. [1, 2]
c. [1]
d. [1, 3]
e. [2, 3]
b
You might also like to view...
Whenever you find yourself programming the same type of behavior more than once, build a(n) ____ method with ____ parameters.
A. generic B. instance C. specific D. global
An email message can be sent from any device such as a desktop computer, portable computer, or smartphone, to anyone without an Internet connection.?
Answer the following statement true (T) or false (F)
____________________ is the degree to which something meets an objective standard.
Fill in the blank(s) with the appropriate word(s).
The Dir class's entries method returns the contents of the folder as an array.
Answer the following statement true (T) or false (F)