which statement(s) is true about xml?
i. it is not case sensitive
ii. it is similar to other programming languages like c & c++.
iii. it is used for defining own tags
iv. it is not helpful in data storage and data sharing
Answers
Answer : (iii) - It is used for defining own tags.
Short note on XML tag:
(i) It is an acronym for eXtensible MarkUp Language.
(ii) XML tags are user defined tags i.e tags are created by the author.
(iii) XML mainly focuses on on what data is. It is designed to store and transport data.
(iv) Documents can be structured logically in XML.
XML case-sensitive:
(i) XML does have a strictly defined syntax.
(ii) It must have a start-tag and an end-tag i.e All XML elements must have a closing tag.
(iii) Tags must be properly nested and also its attributes values must be Quoted.
Example:
(i) <name>brainly</Name> ---- Invalid
<name>brainly</name> ---- valid
(ii) <name><site>brainly</name></site> ---- Invalid
<name><site>brainly</site></name ----- valid
(iii)
<site>
<rank>
Brainly is the best educational app
</site>
</rank>
Hope it helps!