What is the advantage of using String over StringBuilder in multi-threaded applications?
String is faster than StringBuilder
String is synchronized
String is immutable and therefore thread-safe
String can be modified in place
This question is part of this quiz :
Java String Basics