Multiple choice Which of the following statements is INCORRECT with reference to functions? Function definitions can be nested. A function can only return one value at a time. To return the control from middle of a function, the return clause should be used. Function calls can be nested. 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.