Swift - Data Types
Identify the error in the following Swift code:
let x = true let y = false let result = x & y
let x = true let y = false let result = x & y
&&, not a single &.& causes a compile error because it's a bitwise operator, not logical.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions