A _____________ function is a function that calls itself.

A. infinite
B. recursive
C. self-calling
D. iterating

B

Computer Science & Information Technology

You might also like to view...

To use Format Painter for multiple instances, you ________ its button

Fill in the blank(s) with correct word

Computer Science & Information Technology

If the value input for START is 8, how many times will the loop steps in the instructions corresponding to the following pseudocode be executed?

``` Read START COUNT = START DOUNTIL COUNT ? START COUNT = COUNT - 1 Write COUNT ENDDO ``` a) 0 b) 1 c) 8 d) infinite

Computer Science & Information Technology