Normal strings require escaping backslashes and quotes. Verbatim strings do not interpret escape sequences. Single quotes are for chars. Strings can contain Unicode.
Step 2: Evaluate each option
Verbatim strings interpret escape sequences like \n as newlines is false because verbatim strings do not interpret escape sequences. Normal strings require escaping backslashes and quotes is true. Single quotes can be used to create string literals is false. String literals cannot contain Unicode characters is false.
Final Answer:
Normal strings require escaping backslashes and quotes -> Option B
Quick Check:
Normal strings need escapes = Normal strings require escaping backslashes and quotes [OK]
Quick Trick:Normal strings need escapes for \ and " [OK]
Common Mistakes:
MISTAKES
Thinking verbatim strings interpret escapes
Using single quotes for strings
Believing strings can't have Unicode
Master "Strings and StringBuilder" in C Sharp (C#)
9 interactive learning modes - each teaches the same concept differently