Problem Statement
Which of these best describes a closure in Swift?
Explanation
Closures in Swift are blocks of code that can be passed as variables, stored, and can capture constants or variables from their surrounding context. They are fundamental to asynchronous callbacks and functional patterns.