String Buffer supports ---------- strings
-
Growable
-
modifiable
-
constant
-
Both a & b
D
Correct answer
Explanation
StringBuffer supports both growable (can dynamically expand) and modifiable (can change content after creation) strings. Unlike String which is immutable, StringBuffer allows in-place modifications without creating new objects.