CStrings are mutable and can be changed after creation
DStrings do not support concatenation
Step-by-Step Solution
Solution:
Step 1: Recall string properties
Python strings are immutable, support indexing and slicing, can contain any characters, and support concatenation.
Step 2: Evaluate each option
A is false (strings are immutable), B is false (strings can contain any characters including symbols), C is true, D is false (strings support concatenation).
Final Answer:
Strings support indexing and slicing -> Option A
Quick Check:
Strings are immutable but indexable [OK]
Quick Trick:Strings are immutable but indexable and sliceable [OK]
Common Mistakes:
MISTAKES
Thinking strings can be changed in place
Believing strings only hold letters/digits
Ignoring string concatenation ability
Master "Data Types as Values" in Python
9 interactive learning modes - each teaches the same concept differently