What is the terminating condition and stopping case of the factorial function?
a) if (n = 1)
return n;
b) if (n >0)
return 1;
c) if (n != 1)
return 1;
d) if (n <= 0)
return 1;
d) if (n <= 0)
return 1;
Computer Science & Information Technology