interface MyInterface{
publicvoid aMethod();
}
class MyClass implements MyInterface{
}
A. The class will not compile.
B. The class will compile if it is declared public.
C. The class will compile if it is declared abstract.
D. The class may not be instantiated.