Which of the following are true about this method declaration?
void myMethod(String s) {
}
myMethod()
is static. myMethod()
does not return a value. myMethod()
is abstract. myMethod()
may not be accessed outside of the package in which it is declared. B and D.
myMethod()
does not return a value and is declared with package access.