CBSE Class 12 Computer Science Question 26 of 101

Functions — Question 6

Back to all questions
6
Question

Question 6

Which values are used by the functions to communicate information back to the caller?

  1. local
  2. global
  3. return
  4. random
Answer

return

Reason — The return statement is used by functions to communicate information back to the caller. It allows functions to send a specific value or result back to the code that called the function, which can then be used for further processing or operations.