Google News
logo
XML - Interview Questions
Define Structure of XML?
XML Declaration
<?xmlversion="1.0" encoding ="UTF-8">​
Document Type Declaration
<!DOCTYPE library PUBLIC="-//DTDLibrary//EN" "path/of/library.dtd">​
XML Body
<library>
  <title>Free Time Learn</title>
  <heading>Reminder</heading>
  <body>XML Tutorial</body>
</library>
Advertisement