Answer Posted / sarankumarreddy.c
XML(Extensible Markup Langauge)is all about describing
data.An XML tag is not something predefined but it is
something you have to define according to your needs.Below
is a XML which describes invoice data.
<?XML version="1.0" encoding="ISO-8859-1"?>
<student>
<studentnumber>111</studentnumber>
<studentname>SaranKumarReddy.C</studentname>
<totalmarks>790</totalmarks>
<average>79</average>
</student>
For instance in the above example of student all tags are
defined according to student needs.The XML document is self
explanatory,any one can easily understand looking at the
XML data what exactly it means.
In the above example <student></student> tag is the root
element.Root element is the top most elements for a XML.
XML is case sensitive.
Eg: <student> tag is not same as <Student> tag.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain XSL-FO Documents structure?
What is mean by xsl?
How dtd is different from xml?
How do different xml technologies treat xml namespace declarations?
How do I convert xml to text?
What do xml namespaces actually contain?
How do I import an xml file into excel?
What is xml and why it is used?
Is xml a data structure?
Do you feel that you are a good XSLT programmer?
What is the extension of xslt file?
What are xml naming rules?
What happens if there is no prefix on an element type name?
Can you use the XSLT to convert html into VXML?
What are the different types of parser available to parse the XML document?