Question: Kotlin classes are final by default. What does final mean?
- final means that you cannot use interfaces with this class.
- final means that this is the only file that can use the class.
- final means that you cannot extend the class.
- final classes cannot be used in the finally section of a try/catch block.
Answer: The correct answer of the above question is Option C:final means that you cannot extend the class.