यदि x = math.factorial(0) है तो x का मान क्या है?
What is the value of x if x = math.factorial(0)?
A)
B)
C)
D)
Explanation:
The factorial of 0 is defined as 1
. This is a standard mathematical definition.
So, if x = math.factorial(0)
, the value of x
will be 1
.
Answer: (B) 1