ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
What is the purpose of the by keyword in Kotlin?
Correct Answer: C — Delegation
The by keyword is used for delegation in Kotlin. For example, with by lazy, initialization of a property is deferred until it is first accessed.