InterviewSolution
Saved Bookmarks
| 1. |
The node directly above a node is called __________(a) sibling(b) child(c) parent(d) ancestors |
|
Answer» The correct option is (c) parent The best explanation: The node directly above a node is the parent of that node. In HTML, the document itself is the parent node of the HTML element, HEAD and BODY are child nodes of the HTML element. |
|