What namespace must be used in order to use the DOM for XML support?
-
System.Data.Xml
-
System.Xml
-
System.DOM.Xml
-
System.DOM
B
Correct answer
Explanation
System.Xml is the namespace in .NET that provides XML DOM (Document Object Model) support. It contains classes like XmlDocument, XmlNode, XmlElement for parsing and manipulating XML documents. There is no System.DOM namespace in .NET, and System.Data.Xml is not the primary XML namespace.