Multiple choice technology programming languages

String Buffer supports ---------- strings

  1. Growable

  2. modifiable

  3. constant

  4. Both a & b

Reveal answer Fill a bubble to check yourself
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.