MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following recursive implementation used to find the length of a string: Which of the following lines should be inserted to complete the above code? |
| A. | 1 |
| B. | len |
| C. | recursive_get_len(s, len+1) |
| D. | 1 + recursive_get_len(s, len+1)View Answer |
| Answer» E. | |