ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
What is a key characteristic of Kotlin collections?
Correct Answer: B — Kotlin separates mutable and immutable collections
Kotlin distinguishes between mutable (MutableList, MutableSet) and immutable (List, Set) collections, giving developers more control over data mutability.