Ask a New Question
Search
Question
what is expression 5 factorial equal
Answers
Answers
JJ
5 factorial means 5 times 4 times 3 times 2 times 1.
Related Questions
Related
i just need help with factorials I assume you know what a factorial is: 1! = 1 2! = 1x2 = 2 3! = 1...
WAT IS 12 FACTORIAL
Express (12/4) in factorial notation (i.e. using the nCr formula). Evaluate.
Find the value of the factorial 3! 3!=? Type a whole number
Factorial
def factorial(n): if n==1: else: return n* factorial(n-1) print("the factorial of ", 7, "is", fac...
Factorial of 5 is?
for the recursive factorial function output shown below,which lines of output wold reflect the backw...