Computer Science, asked by Helpme999999999, 1 year ago

Draw the XML tree for the code given below: Harry PotterJ K. Rowling200529.99Learning XMLErik T. Ray200339.95

Answers

Answered by Anonymous
2
<?xml version="1.0" encoding="UTF-8"?>
<bookstore>
<book category="popular novel">
<title lang="en">Harry Potter</title>
<author>J.K. Rowling</author>
<year>2005</year>
<price>99</price>
</book>

<book category="learning">
<title lang="en">How-to for dummies</title>
<author>Erik T.Ray</author>
<year>2003</year>
<price>95</price>
</book>
</bookstore>

Similar questions