Kotlin - Null Safety
Find the issue in this Kotlin snippet:
var age: Int = 25 age = null
var age: Int = 25 age = null
age is mutable var of non-nullable type Int.Int is not allowed and causes compilation error.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions