Intermediate Kotlin
Q67 / 100

How does Kotlin support multiple interface implementation?

Correct! Well done.

Incorrect.

The correct answer is B) A class can implement multiple interfaces by listing them comma-separated after the colon

B

Correct Answer

A class can implement multiple interfaces by listing them comma-separated after the colon

Explanation

class MyClass : InterfaceA, InterfaceB, ParentClass() implements multiple interfaces and optionally extends one class.

Progress
67/100