1.
Which mechanism in XML allows organizations to specify globally unique names as element tags in documents?
A
Root
B
Header
C
Schema
D
Namespace
Answer and explanation
Correct Answer: D — Namespace
An XML namespace associates element and attribute names with a URI (Uniform Resource Identifier), ensuring global uniqueness and preventing naming conflicts when combining XML documents from different sources. Namespace declarations are typically placed on the root element using the 'xmlns' attribute, and all elements sharing a prefix belong to that namespace.
