Kotlin - Operators and Expressions
What will be the output of the following Kotlin code?
val a = 15 val b = 10 println(a <= b)
val a = 15 val b = 10 println(a <= b)
a <= b is false.false.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions