Computer Science, asked by kselvamani261, 4 months ago

Consider the following function mys:
def mys(m):
if m == 1:
return(1)
else:
return(m*mys(m-1))

Which of the following is correct?

The function always terminates with mys(n) = factorial of n


The function always terminates with mys(n) = 1+2+...+n


The function terminates for non-negative n with mys(n) = factorial of n


The function terminates for positive n with mys(n) = factorial of n​


babu1982: thanks

Answers

Answered by babu1982
1

Answer:

plz give me brainliest answer

Answered by srivallithivanaisilk
0

Answer:

1+2+3=6the and you have to with you have 1+2+

Similar questions