Solved

Insert the Missing Code in the Following Code Fragment

Question 39

Multiple Choice

Insert the missing code in the following code fragment. This fragment is intended to recursively compute xn, where x and n are both non-negative integers: public int power(int x, int n)
{
If (n == 0)
{
____________________
}
Else
{
Return x * power(x, n - 1) ;
}
}


A) return 1;
B) return x;
C) return power(x, n - 1) ;
D) return x * power(x, n - 1) ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions