When a function invokes itself, the process is called ____ recursion.

A. direct
B. mutual
C. self-referential
D. indirect


Answer: A

Computer Science & Information Technology

You might also like to view...

When using a template, the user fills in his or her own information, replacing ________ text

Fill in the blank(s) with correct word

Computer Science & Information Technology

Assume you have two integer variables, num1 and num2. Which of the following is the correct way to swap the values in these two variables?

a. ``` int temp = num1; num2 = num1; num1 = num2; ``` b. ``` int temp = num2; num2 = num1; num1 = temp; ``` c. ``` num1 = num2; num2 = num1; ``` d. ``` int temp = num1; num2 = temp; temp = num2; num1 = temp; ``` e. None of these

Computer Science & Information Technology

Sometimes waves need to be made stronger or ________

A) duplexed B) amplified C) attenuated D) modulated

Computer Science & Information Technology

Validation rules are entered in the ________ pane

A) Rules B) Validation C) Data macro D) Field Properties

Computer Science & Information Technology