Multiple choice Which of the following statements is true? StringBuilder class is faster than StringBuffer class. StringBuilder is thread safe. StringBuffer str=new StringBuffer("hello"); //creates an immutable string object "str" which contains "hello" StringBuilder is synchronized. None of the above statements is true Reveal answer Fill a bubble to check yourself A Correct answer Explanation StringBuilder is not synchronized , where as StringBuffer is synchronized. Hence StringBuilder is faster than String Buffer.