In Java, <code>String</code> objects are
- Acheck_circle
Immutable (operations return new strings; original unchanged)
- B
Synchronized
- C
Always null
- D
Mutable (can be modified in place)
Explanation
<code>s.toUpperCase()</code> returns a new string; <code>s</code> itself is unchanged.