Swift - Operators and Expressions
What will be the output of the following Swift code?
let x = 10 let y = 20 print(x > y)
let x = 10 let y = 20 print(x > y)
x (10) is greater than y (20).x > y is false.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions