-
Which class provides thread safe implementation of List?
-
- HashList
- List
- ArrayList
- CopyOnWriteArrayList
- None of these
Correct Option: D
CopyOnWriteArrayList is a concurrent collection class. Its very efficient if ArrayList is mostly used for reading purpose because it allows multiple threads to read data without locking, which was not possible with synchronized ArrayList.