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