jbrad8422 jbrad8422 06-03-2024 Engineering contestada Consider this recursive function:def mystery(x) : if x <= 0 : return 0 else : return x + mystery(x - 1)What is mystery(5)?A. 15 B. 10C. 0D. 4