Which symbol is used to express a factorial like 4*3*2*1

!

?

&

#

1 answer

The symbol used to express a factorial is !. For example, 4! (read as "four factorial") equals 4 * 3 * 2 * 1.

Similar Questions
  1. def factorial(n):if n==1: else: return n* factorial(n-1) print("the factorial of ", 7, "is", factorial (7)) how could the
    1. answers icon 1 answer
    1. answers icon 1 answer
  2. Which code reflects the recursive case?(1 point) Responses else: return (x * factorial(x - 1)) else: return (x * factorial(x -
    1. answers icon 1 answer
    1. answers icon 1 answer
more similar questions