MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following iterative implementation used to find the length of a linked list:Which of the following conditions should be checked to complete thebelow code? |
| A. | temp->next != 0 |
| B. | temp == 0 |
| C. | temp != 0 |
| D. | none of the mentioned |
| Answer» D. none of the mentioned | |