MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following code:Which of the following lines is the base case for thebelow code? |
| A. | if(n ==0 && len == 0) |
| B. | if(n == 0) |
| C. | if(n ==0 && len == 0) and if(n == 0) |
| D. | none of the mentioned |
| Answer» D. none of the mentioned | |