InterviewSolution
Saved Bookmarks
| 1. |
What Dom Parser Returns? |
|
Answer» When you parse an XML document with a DOM parser, you GET back a TREE STRUCTURE that CONTAINS all of the elements of your document. The DOM provides a variety of functions you can use to examine the contents and structure of the document. When you parse an XML document with a DOM parser, you get back a tree structure that contains all of the elements of your document. The DOM provides a variety of functions you can use to examine the contents and structure of the document. |
|