Problem Statement
Which statement best captures immutability in functional programming as applied in Swift?
Explanation
In functional programming, immutability means data does not change after creation; instead operations produce new data. Swift can support this via `let`, value types, and immutable patterns. This makes code safer, especially in concurrent contexts.
Practice Sets
This question appears in the following practice sets: