Kotlin - Operators and Expressions
Given the Kotlin code below, what will be the output?
val a = 7 val b = 7 val c = 10 println((a == b) && (b < c))
val a = 7 val b = 7 val c = 10 println((a == b) && (b < c))
a and b are 7, a == b is true.b < c is true.true && true is true.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions