MCQOPTIONS
Saved Bookmarks
| 1. |
Fill in the line of code for calculating the factorial of a number. |
| A. | num*fact(num-1) |
| B. | (num-1)*(num-2) |
| C. | num*(num-1) |
| D. | fact(num)*fact(num-1) |
| Answer» B. (num-1)*(num-2) | |