Kotlin - Null Safety
You want to store a user's middle name which might be missing. How should you declare this variable in Kotlin to handle null safely?
String?.null to String? is allowed and safe.? for variables that can be null [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions