Given this method in a class: 21. public String toString() { 22. StringBuffer buffer = new StringBuffer(); 23. buffer.append('<'); 24. buffer.append(this.name); 25. buffer.append('>'); 26. return buffer.toString(); 27. } Which statement is true?
Reveal answer
Fill a bubble to check yourself