C
Programming and Technical
Programming
Definition
The keyword used to transfer control from a function back to the calling function is
Options
1) switch
2) goto
3) go back
4) return
Read Solution (Total 21)
-
- Ans: Return
Swirch is used for case selection
Goto is used for control transfer within same function
go back: there is no keyword in programming language as GO BACK - 9 years agoHelpfull: Yes(16) No(0)
- 4) return transfer control from function back to calling function
- 8 years agoHelpfull: Yes(2) No(0)
- return keyword
- 9 years agoHelpfull: Yes(1) No(0)
- Option 4
because return is the keyword used to return control back to the calling function. Refer C documentation for more info. - 9 years agoHelpfull: Yes(1) No(0)
- option 4
function block always ends with return - 9 years agoHelpfull: Yes(0) No(0)
- ans-> 4(return)
- 9 years agoHelpfull: Yes(0) No(0)
- 2 goto method is used to contol from one function to another function
- 8 years agoHelpfull: Yes(0) No(3)
- option 4) return
because return statement only returns the value to the main() function - 8 years agoHelpfull: Yes(0) No(0)
- option 4 ,, return
- 8 years agoHelpfull: Yes(0) No(0)
- return transfer control from a function back to the calling function
- 7 years agoHelpfull: Yes(0) No(0)
- the return is terminates the execution of the function ans the return is control the calling function.
- 7 years agoHelpfull: Yes(0) No(0)
- return is a keyword which is used in the functions to transfer the control to function calling
- 7 years agoHelpfull: Yes(0) No(0)
- return is used to transfer the process from called function to calling function
- 7 years agoHelpfull: Yes(0) No(0)
- ANS:4)return
The return statement terminates the execution of a function and it returns the control to the calling function. The execution resumes in the calling function at a point immediately following the call. - 7 years agoHelpfull: Yes(0) No(0)
- option :=2
because in switch ,break is used to transfer control from a function back to the calling function
similarly
option :=3 also possible because goto bring to the label or function after mention goto i.e.to transfer control from a function back to the calling function . - 7 years agoHelpfull: Yes(0) No(0)
- return is keyword used to transfer control from a function back
- 6 years agoHelpfull: Yes(0) No(0)
- 4) return is the answer because return is used for transfer control.
- 6 years agoHelpfull: Yes(0) No(0)
- Its option 4 return
- 6 years agoHelpfull: Yes(0) No(0)
- return
we can call function using return keyword - 6 years agoHelpfull: Yes(0) No(0)
- 4)return
return transfer control from function to calling function - 6 years agoHelpfull: Yes(0) No(0)
- return is used when we want return anything according to given question to the calling function
- 4 years agoHelpfull: Yes(0) No(0)
C Other Question