InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of the DocumentFragment node type?(a) To hold a portion of a document(b) To split the document into fragments(c) To hold the entire document(d) To hold the fragments |
|
Answer» Correct option is (a) To hold a portion of a document The explanation: The DocumentFragment node type represents a “lightweight” Document object that has no parent. It is used as a lightweight version of Document that stores a segment of a document structure comprised of nodes just like a standard document. |
|