tkinnaird2066 tkinnaird2066 24-12-2019 Computers and Technology contestada The square of n can be calculated by noting that square(n) = square(n-1) + diff(n-1). diff(n) = diff(n-1)+2. The square(0)=0, diff(0)=1. What is the stopping condition for this recursive definition?a. unknown b. n=1 c. n=-1 d. n=o