InterviewSolution
Saved Bookmarks
| 1. |
What does a Node object represent?(a) Single node(b) Set of nodes(c) Sequence of nodes(d) Node array |
|
Answer» Right choice is (a) Single node To elaborate: The Node object represents a single node in the document tree. A node can be an element node, an attribute node, a text node, or any other of the node types explained in the Node Types chapter. |
|