27. Which of the following about recursion is TRUE?
(A)We should always replace iterations with recursions if possible
(B) Recursion usually uses less memory than iteration as the code is more concise and clearer
(C)Recursion usually has higher algorithm performance
(D) Any problems that can be solved by recursions can also be solved by iterations