A and B are correct. C is incorrect because String does not have an "append" method. D is incorrectbecause only String objects can be operated on using the overloaded "+" operator.E is backwards, StringBuilder is typically faster because it's not thread-safe. F isincorrect because String objects are immutable. A String reference can be altered torefer to a different String object, but the objects themselves are immutable.