A function that calls another function is referred to as the ____.
A: function prototype
B: called function
C: calling function
D: function declaration
A: function prototype
B: called function
C: calling function
D: function declaration
举一反三
- Which one of the following statements is right? A: Function definitions can be nested, but function calls cannot be nested. B: Function definitions cannot be nested, but function calls can be nested. C: Both function definitions and function calls cannot be nested. D: Both function definitions and function calls can be nested.
- A function that calls itself either directly or indirectly (i.e., through another function) is a(n) ______ function.
- The MATLAB function [a,Jm] = lsqcurvefit(fun,a0,x,y, opts), fun is the MATLAB description to the prototype function, which functions can be used as prototype functions.( ) A: M-function B: anonymous function C: inline function D: not sure
- For a function y=f(x),the range of x is called () f(x) A: domain of function B: range of function
- 下列声明自定义函数selectNumber()正确的是( )。(A)function : selectNumber(){} (B)function selectNumber(){ }(C)function =selectNumber(){} (D)function {selectNumber()} A: function : selectNumber(){} B: function selectNumber(){ } C: function =selectNumber(){} D: function {selectNumber()}