Certified Associate in Python Programming (PCAP) — Question 92
Python strings can be `glued` together using the operator:
Answer options
- A. .
- B. &
- C. _
- D. +
Correct answer: D
Explanation
The correct answer is D, as the '+' operator is specifically designed for string concatenation in Python. The other options do not serve this purpose; for instance, '.' is used for attribute access, '&' is a bitwise operator, and '_' is typically used in variable naming.