After `a = "sun"` and `b = a + "set"`, which statement is correct?
Explanation
String addition creates the new value `sunset` and binds it to `b`; the immutable object referred to by `a` remains `sun`. The idea that the left operand grows in place would require mutable string contents, which Python does not provide.