What happens if multiple threads try to modify a StringBuilder instance?
It will throw a ConcurrentModificationException
It may cause unexpected results due to lack of synchronization
It will execute sequentially
It will behave the same as StringBuffer
This question is part of this quiz :
Java String Classes