Quiz: Nullability
Test your understanding of the concepts discussed in the Nullability chapter.
1
What is the output of the following Kotlin program?
fun main() {
var a: String? = null
println(a?.length)
}
A)
null
B)
0
C)
NullPointerException
D)
UninitializedPropertyAccessException
Question 1 of 50 attempted
Get hands-on with 1400+ tech skills courses.