InterviewSolution
Saved Bookmarks
| 1. |
How can the nodes in the node list be accessed?(a) Key(b) Index number(c) Looping(d) Value |
|
Answer» Right choice is (b) Index number For explanation I would say: The nodes in the node list can be accessed through their index number. The nodes are sorted as they appear in the source code, and the index starts at 0. |
|