Asked by Awesome

Which of the following is not found in the header of a Java method
A. a return type
B. a parameter list
C. modifiers
D. statements

Answers

Answered by Bobby
Statements
Answered by Anonymous
Statements are not found in the header of a java method.

Example:

public static int methodName(int a, int b)

public static = modifiers
int = return type
methodName = method name
(int a, int b) = parameters

So the correct answer is staments.
There are no AI answers yet. The ability to request AI answers is coming soon!