What is true of this code?
let name: String?
name can hold only a string value.
name
name can hold either a string or nil value.
Optional values cannot be let constants.
let
Only non-empty string variables can be stored in name. Reference: The Swift Programming Language: Language Guide: The Basics: Optionals