recursive function is one that

a) Speeds up a program.
b) Is always slower than a nonrecursive function.
c) Calls itself
d) Calls no functions at all.
e) Calls another function


c) Calls itself

Computer Science & Information Technology

You might also like to view...

Currently,  microprocessor speed is measured in _____.

A. gigahertz B. cycles per second C. megahertz D. instructions per second

Computer Science & Information Technology

Assume the following environment

``` #define MAX 50 int a[MAX], i, j, temp; ``` What is the maximum valid subscript value for array a? a. 0 b. 49 c. 50 d. a[50] e. none of the above

Computer Science & Information Technology

Developers reduce the amount of time required to wait for file requests by __________.

A. using fewer styles. B. reducing the number of images on each page. C. eliminating the use of JavaScript libraries. D. combining files of the same type into a single file.

Computer Science & Information Technology

A technique in which one system models the behavior of another system is called ____.

A. imitation B. recursion C. simulation D. stimulation

Computer Science & Information Technology