In Kotlin, we can declare variable which can hold null reference.
Suppose we have a nullable reference a, we can say "if a is not null, use it, otherwise use some non-null value x"
var a: String? = "Nullable String Value"
Now, a can be null. So when we need to access value o...