What will happen when you attempt to compile and run the following code?
class Base{
public void Base(){
System.out.println("Base");}
} public class In extends Base{
public static void main(String argv[]){
In i=new In();
}
}
A. Compile time error Base is a keyword
B. Compilation and no output at runtime
C. Output of Base
D. Runtime error Base has no valid constructor
Exit (21