A _____________ function is a function that calls itself.
A. infinite
B. recursive
C. self-calling
D. iterating
B
You might also like to view...
Portions of statements that contain calculations are called
a. variables. b. constants. c. expressions. d. None of the above.
STRINGS is a form of _______________ utility.
a. JPEG file b. Disk imaging c. Text searching d. Data carving
Which line of code should be used to make the following code snippet work?
``` var longString = "Great day, isn't it?"; var shortString = _____???_______ document.write("It's going ton rain to" + shortString); ``` a. ``` shortString = longString.substr(20, 7); ``` b. ``` shortString = longString.substr(6, 3); ``` c. ``` shortString = substr(longString, 6, 3); ``` d. ``` shortString = longString.substr(7, 3); ```
When the database finds a match during a search of the record, that record is immediately displayed as the next record
Indicate whether the statement is true or false