Multiple Choice
What value does function mystery return when called with a value of 4? int mystery (int number)
{
If (number <= 1) {
Return 1;
}
Else {
Return number * mystery(number - 1) ;
}
}
A) 0.
B) 1.
C) 4.
D) 24.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q6: The argument list of a function call
Q7: For which of the following operators does
Q8: Which of the following is not a
Q9: Which of the following is false?<br>A) An
Q10: Converting from type _ to type _
Q12: When an argument is passed-by-value, changes in
Q13: Recursion is memory-intensive because:<br>A) Recursive functions tend
Q14: A reference parameter:<br>A) Is an alias for
Q15: Which of the following is true of
Q16: Which of the following does the C++