< 1 2   Sort: Rank

Is XML case sensitive
Is XML case sensitive? Yes, they are case sensitive.
2007-10-31, 5512👍, 0💬

If XML does not have closing tag will it work
If XML does not have closing tag will it work? No, every tag in XML which is opened should have a closing tag. For instance in the top if I remove &lt;/discount> tag that XML will not be understood by lot of application.
2007-10-31, 8078👍, 0💬

What is ROOT element in XML
What is ROOT element in XML? In our XML sample given previously &lt;invoice>&lt;/invoi ce>tag is the root element. Root element is the top most elements for a XML.
2007-10-31, 4898👍, 0💬

What is the version information in XML
What is the version information in XML? “version” tag shows which version of XML is used.
2007-10-31, 6628👍, 0💬

What is XML
What is XML? XML (Extensible markup language) is all about describing data. Below is a XML which describes invoice data. &lt;?xml version="1.0" encoding="ISO-8859-1"?> &lt;invoice> &lt;productname>Shoes &lt;qty>12 &lt;totalcost>100 &lt;discount>10 &lt;/invoice> An XML tag...
2007-10-31, 4941👍, 0💬

< 1 2   Sort: Rank