What is the output of the following Python code?
def confusion(num):
if (num > 10):
return (num - 1)
return confusion(confusion(num + 5))
print(confusion(2))
a) 10
b) 11
Answers
Answered by
8
Answer:
b
option b is right
Explanation:
ajjehsbee
Answered by
25
Answer:
correct answer is 13
thank you ❤️
Similar questions