Kotlin Program - Study Mode
[#206] Which lifecycle method is called to make an activity visible?
Correct Answer
(C) onStart()
[#207] Which of the following is a feature of Kotlin?
Correct Answer
(C) Extension functions
[#208] Which of the following is true about Kotlin's null safety?
Correct Answer
(C) Kotlin uses the ? operator to denote nullability
[#209] Which of the following is true about Kotlin's type system?
Correct Answer
(B) Kotlin's type system is more strict than Java's
[#210] Which of the following is true about Kotlin's when expression?
Correct Answer
(A) It is similar to the switch statement in Java