InterviewSolution
Saved Bookmarks
| 1. |
What is the function of the XML parser?(a) Converts XML document to XML DOM object(b) Converts XML DOM object to XML document(c) Converts XML DOM object to a comment(d) Compiles the html document |
|
Answer» The correct choice is (a) Converts XML document to XML DOM object To elaborate: An XML parser converts an XML document into an XML DOM object – which can then be manipulated with JavaScript. All major browsers have a built-in XML parser to access and manipulate XML. |
|