InterviewSolution
Saved Bookmarks
| 1. |
Which method to use while working with XML fragments, instead of XML()?(a) XMLInterface()(b) XMLClass()(c) XMLList()(d) XMLArray() |
|
Answer» The correct answer is (c) XMLList() For explanation: An XML fragment is an XML document with no single top-level root element. When working with XML fragments, use XMLList() instead of XML(). |
|