Kotlin - Basics and JVM Runtime
You want to print the numbers 1, 2, and 3 on the same line separated by spaces, then print "Done" on the next line. Which Kotlin code achieves this?
print("1 2 3") outputs "1 2 3" on the same line.println("Done") prints "Done" and moves to the next line.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions