VB .Net Question:
Download Questions PDF

Why is the XML InfoSet specification different from the Xml DOM? What does the InfoSet attempt to solve?

Answer:

"The XML Information Set (Infoset) defines a data model for XML. The Infoset describes the abstract representation of an XML Document. Infoset is the generalized representation of the XML Document, which is primarily meant to act as a set of definitions used by XML technologies to formally describe What parts of an XML document they operate upon.
The Document Object Model (DOM) is one technology for representing an XML Document in memory and to programmatically read, modify and manipulate a xml document.
Infoset helps defining generalized standards on how to use XML that is not dependent or tied to a particular XML specification or API. The Infoset tells us What part of XML Document should be considered as significant information.

Download VB .Net Interview Questions And Answers PDF

Previous QuestionNext Question
What does it meant to say "the canonical" form of XML?Whats the difference between const and readonly?