What is the result of attempting to compile and run this code segment?
final class Base { } class Derived extends Base { }
Compiles and runs successfully
Runtime error
Compilation error because a final class cannot be extended
None of the above