Answer:
The answer is "Option A"
Step-by-step explanation:
The prototype of the method is also known as the method declaration, in which it defines the name, arguments and return type of the method. It can't define the method body. It offers to the compiler, to inform the function, which can be used in this program later, and wrong option can be described as follows:
- Option b and Option d both were wrong because, Its uses return type int and void, which is not used in method its return type.
- In option c, It is wrong because, in method prototype, we use datatypes in parameters, not names.