Kotlin - Operators and Expressions
Given the Kotlin code:
What is the output?
val a = 5 val b = 10 val c = 5 println(a == c && b > a)
What is the output?
val a = 5 val b = 10 val c = 5 println(a == c && b > a)
a == c is true.b > a is true.true && true is true.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions