Computer Science, asked by tharithasririya, 8 months ago

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 jaymahajan1234jm
8

Answer:

b

option b is right

Explanation:

ajjehsbee

Answered by gauravmfworld
25

Answer:

correct answer is 13

thank you ❤️

Similar questions