Assume that you have written a method with the header void myMethod(string a). This method returns ________.
a. nothing
b. myMethod
c. a string value
d. a numeric value
The word before your method name (myMethod) always determines the return type for your method. So in this case, you specified "void", which in Java means, nothing.