✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What will be the output if the following function is called with input parameter 36?
def recfun2(x): if(x == 0): return str(0) else: return (recfun2(x/2) + str(x%2))