publicclass MainClass{
publicstaticvoid main(String[] argv){
System.out.println();
}
void myMethod(String s) {
}
}
A. myMethod() is static.
B. myMethod() does not return a value.
C. myMethod() is abstract.
D. myMethod() may not be accessed outside of the package in which it is declared.