Behold the power of StringBuilder

Report a typo

Which of the following StringBuilder's contain a text fully equal to "Behold the power of StringBuilder"?

StringBuilder sb1 = new StringBuilder();
sb1 = sb1.append("Behold the power of StringBuilder");

StringBuilder sb2 = new StringBuilder();
sb2.append("Behold the power of StringBuilder");

StringBuilder sb3 = new StringBuilder()
        .append("Behold")
        .append("the power of")
        .append("StringBuilder");

StringBuilder sb4 = new StringBuilder("Behold the power of StringBuilder");
Select one or more options from the list
___

Create a free account to access the full topic