

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following can be the base case for the recursive implementation used to find the length of linked list? |
A. | if(current_node == 0) return 1 |
B. | if(current_node->next == 0) return 1 |
C. | if(current_node->next == 0) return 0 |
D. | if(current_node == 0) return 0 |
Answer» E. | |