Advertisements
Advertisements
Question
In what situation does a method return a value?
Answer in Brief
Solution
When a method is defined to deliver an output to its caller program, it returns a value.
Example:
int factorial(int x)
{
}
According to the method specification above, this method returns an integer value. To return an integer value, include a return statement at the end of the method, as specified by the return type.
shaalaa.com
Is there an error in this question or solution?