Loading practice questions
What is an Interface in Kotlin?
(A) A group of functions without any implementation
Explanation:
In Kotlin, an interface contains method signatures and properties but does not provide implementation. It defines the contract that implementing classes must fulfill.