What will be the value of n the third time recursive factorial is called? The original (first) call is "factorial(5)".Algorithm recursiveFactorial (n)   if (n equals 0)      return 1   else      return (n * recursiveFactorial (n - 1))   end ifend recursiveFactorial

A. 1
B. 2
C. 3
D. 4


Answer: C

Computer Science & Information Technology

You might also like to view...

Which operator corresponds to operator keyword and_eq?

a. && b. != c. & d. &=

Computer Science & Information Technology

Pressing ________ on the keyboard will select all contents on a document

A) Ctrl + V B) Ctrl + A C) Ctrl + C D) Ctrl + X

Computer Science & Information Technology

Why display the title-safe zone?

What will be an ideal response?

Computer Science & Information Technology

We CANNOT use HLOOKUP to search for data in the UPPER row of the reference table.

a. true b. false

Computer Science & Information Technology