Multiple choice technology programming languages Which class creates a mutable string that can be used by multiple threads? String StringBuffer StringBuilder none Reveal answer Fill a bubble to check yourself B Correct answer Explanation StringBuffer is a mutable string class with synchronized methods, making it thread-safe. StringBuilder is also mutable but not thread-safe. String itself is immutable.