(Choose 1 answer)
class Base Base(int i){System.out.println("Base");}
}
What will happen when you attempt to compile and run the following class?
class Severn extends Base{
public static void main(String argv[]){Severn s = new Severn();
void Severn(){
System.out.println("Severn");}
}
A. Compilation and output of the string "Severn" at runtime
B. Compile time error
C. Compilation and no output at runtime
D. Compilation and output of the string "Base"
Exit 5