Which TWO statements about Python strings are correct? (Choose exactly 2 correct answers.)
Immutable means the string object cannot be modified; concatenation returns a new string.
Why this answer
Option B (strings are immutable) and Option D (concatenation creates a new string) are correct. Option A is wrong because strings are immutable, not mutable. Option C is wrong because .append() is not a method of strings; it belongs to lists.
Option E is wrong because item assignment is not allowed on strings (immutable).