Multiple choice

Which of the following statements is INCORRECT with reference to functions?

  1. Function definitions can be nested.

  2. A function can only return one value at a time.

  3. To return the control from middle of a function, the return clause should be used.

  4. Function calls can be nested.

  5. Functions can be called recursively.

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

We can call a function from within another function but we cannot define a function inside another. The functions must be defined independent of each other.