Acid4519 Acid4519 19-04-2024 Computers and Technology contestada Write a recursive function (compute1(n)) that takes one parameter and implements the following recursive definition:compute 1(n)=20 if n is negativecompute1(n) = compute 1(n-1)+2n if 0<=n<=10compute1(n) = compute 1(n-2)+3n if n>10