Respuesta :
public static void myMethod(){
System.out.println("This is a void method");
}
I hope this helps!
Void methods are meant to return control back to the caller instead of returning a value. Hence, the void method named myMethod is declared public and static and returns This is a void method. The program goes thus :
public static void myMethod(){
System.out.println("This is a void method");
}
#a void method named myMethod which is declared as being public and static.
#Thr method returns the statement This is a void method.
Learn more : https://brainly.com/question/19113167