CBSE Class 12 Computer Science Question 22 of 101

Functions — Question 2

Back to all questions
2
Question

Question 2

Name the statement that sends back a value from a function.

  1. print
  2. input
  3. return
  4. None
Answer

return

Reason — The return statement in a function specifies the value to be sent back to the calling function and also signifies the end of the function's execution.