MCQOPTIONS
Saved Bookmarks
| 1. |
int main(){ printf(""Hello""); main(); return 0;}10.Which of the following is true about recursion? |
| A. | Recursion provides a clean and simple way to write code. |
| B. | The recursive program has less space requirements than iterative program |
| C. | The principle of stack is FIFO |
| D. | All of the above |
| E. | |
| Answer» B. The recursive program has less space requirements than iterative program | |