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