Problem Statement
What does the `?` after a type name signify in Swift, e.g., `Int?`?
Explanation
When you write `Int?` in Swift it means the variable is an optional — it can either hold an `Int` value or `nil`. This helps avoid runtime nil-pointer crashes by making absence explicit.