0% found this document useful (0 votes)
3 views1 page

Understanding XML Basics and Usage

XML is a markup language used to store and transport data. It was designed to be software- and hardware-independent as well as self-descriptive. XML tags provide a way to describe data like a note with a <to> tag for the recipient, <from> tag for the sender, and other tags for the heading and body. However, XML does not perform any functions on its own but rather defines the structure of information.

Uploaded by

udayahari
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Understanding XML Basics and Usage

XML is a markup language used to store and transport data. It was designed to be software- and hardware-independent as well as self-descriptive. XML tags provide a way to describe data like a note with a <to> tag for the recipient, <from> tag for the sender, and other tags for the heading and body. However, XML does not perform any functions on its own but rather defines the structure of information.

Uploaded by

udayahari
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Introduction to XML

PreviousNext

XML is a software- and hardware-independent tool for storing and transporting data.

What is XML?

XML stands for eXtensible Markup Language

XML is a markup language much like HTML

XML was designed to store and transport data

XML was designed to be self-descriptive

XML is a W3C Recommendation

XML Does Not DO Anything


Maybe it is a little hard to understand, but XML does not DO anything.
This note is a note to Tove from Jani, stored as XML:

<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
The XML above is quite self-descriptive:

It has sender information.

It has receiver information

It has a heading

It has a message body.

But still, the XML above does not DO anything. XML is just information wrapped in tags.

You might also like