All quizzes
KotlinCoreMultiple choice

Given `val name: String? = null`, what is the value of `val n = name?.length ?: -1`?

val name: String? = null
val n = name?.length ?: -1