Scenario:– Learning XML, Rules and Meaning of XML, Well formed XML, Delimiters in XML
Solution :- In this video tutorial we tried to touch basics of XML.
What is XML?
- Extensible Markup Language
- Extensible :- Capable of Being Extended
- Markup :- In the form of tags, indicating logical components of a document
- Used for storing and Transporting data
- Simplicity, portability, platform independence
XML Rules:-
- All XML elements must have Start and End Tag
- Tags are case Sensitive
- Proper Nesting of elements
- Starts with root Element(Parent-Child Tree Structure)
Example :-
<?xml version="1.0"?>
<Tutorial>
<Topic>XML</Topic>
<By>uftHelp</By>
</Tutorial>