Kotlin - Basics and JVM Runtime
What will be printed by this Kotlin code?
println("X")
print("Y")
println("Z")println("X")
print("Y")
println("Z")println("X") prints 'X' and newline, print("Y") prints 'Y' without newline, println("Z") prints 'Z' and newline.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions