Multiple choice technology programming languages

  1. Can an Interface be final?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Interfaces cannot be declared as final in Java. An interface is meant to be implemented by classes, and the final modifier would prevent this, which contradicts the purpose of interfaces. Abstract classes can be final, but interfaces cannot.