Kotlin - Loops and Ranges
What will be the output of this Kotlin code?
for (i in 1 until 4) { print(i) }for (i in 1 until 4) { print(i) }1 until 4 means from 1 up to but not including 4.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions