__________________ recursion results from the lack of a base case.

a) Indirect
b) Direct
c) Infinite
d) Spiral
e) none of the above

c) Infinite

Computer Science & Information Technology

You might also like to view...

Match the following terms to their meanings:

I. Report Wizard II. Design view III. Hide Fields IV. Layout view V. Themes A. Offers more control as you create your report, table, or query B. In Datasheet view, right-click the column header to hide a column C. A more efficient way to start a report D. Provides profession consistent formatting in a database E. The appearance of a report can be modified in this

Computer Science & Information Technology

The strPassword variable contains eight characters. Two of the characters in the password must be numeric. Which of the following statements will access each character stored in the variable, character by character?

A. If strPassword Like "[A-Z][A-Z][A-Z][A-Z][A-Z][A-Z]##" B. For intIndex As Integer = 0 To 7 C. For intIndex As Integer = 1 To 8 D. For intIndex As Integer = 1 To strPassword.Length - 1

Computer Science & Information Technology