(Choose 1 answer)
program that computes the factorial of a number (n). From the specifications you Consider a progra If n < 0, a message "Value out of range" must be issued.If 0=<n<20 the program returns the exact factorial number If 20 =< n =< 200 the factorial number must be approximated and visualized in float If n > 200 a message "Value out of range" must be issued Which of the following ec correct?
A. (n<0) , (0=<n<20) , (n >= 20)
B. (n<0) , (0=<n<200) , (n>200)
C. (n<0) (0=<n<20) , (20=<n=<200) (n>200)
D. (n=<0) (n<20) , (n>=20) , (n>200)
O: 11