ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
What does the lateinit keyword in Kotlin indicate?
Correct Answer: D — A variable that is declared but not immediately initialized
The lateinit keyword in Kotlin is used for variables that are initialized after declaration. It is often used for properties that are initialized in a lifecycle method or dependency injection.