Swift - Control Flow
Which of the following switch cases correctly uses a where clause?
Which of the following switch cases correctly uses a where clause?
let or var followed by where and a condition, e.g., case let x where x > 10:.let. case let x if x > 10: uses if instead of where. case x > 10: is invalid syntax.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions