You are not logged in.
Pages:: 1
#1 2015-06-19 03:34:01
Synchronized ArrayList:
Java Quizzes Core Java
Question:
Is ArrayList is synchronized by default or else we can make it as synchronize or not?
Option A):
ArrayList is not Synchronized but we can make it using - Collections.synchronizedList(new ArrayList());
Option B):
ArrayList is not Synchronized but we can make it Synchronized using - ArrayList.synchronnizedList(new ArrayLis());
Option C):
ArrayList is not Synchronized we cannot make it synchronized
Option D):
ArrayList is synchronized by default
Correct Answer is Option A):
ArrayList is not Synchronized but we can make it using - Collections.synchronizedList(new ArrayList());
You cannot discover the new oceans unless you have the courage to lose the sight of the shore.
Offline
2015-06-19 03:34:01
- Advertisement
- Ads By Google
Re: Synchronized ArrayList:
\n
Pages:: 1