Answer:
The correct answer to the following answer will be option A.
Step-by-step explanation:
Return tag: A tag which is used to return the value of methods or a function. To returns the element accoding to data type of method or function we use return keyword to returning the value.
For Example:
int fun() // function definition
{
int ab=90; // variable declaration
int c=45+ab; // variable declaration
return(c); // returning the value of c
}
In this the integer value is returning a function.