book.xml XML block book 29.99 Xml 1.1 Bible 39.95 principles of comiler 45.20 Using the book.xml file find the answer to the following queries (write XPath expressions).a) Write an expression to find all English books. a) Find books having lang attribute and also their price is below 30. b) Display title of last book. c) Showing only title of books having price below 30 d) Find book not written in German language. e) Find books having price between 30 to 50 Find titles book having title more than 20 characters long.
book.xml
<?xml version="1.0" encoding="UTF-8"?>
<bookstore>
<book>
<title lang="eng">XML block book</title>
<price>29.99</price>
</book>
<book>
<title>Xml 1.1 Bible</title>
<price>39.95</price>
</book>
<book>
<title lang="spanish">principles of comiler</title>
<price>45.20</price>
</book>
</bookstore>
Using the book.xml file find the answer to the following queries (write XPath expressions).a) Write an expression to find all English books.
a) Find books having lang attribute and also their price is below 30.
b) Display title of last book.
c) Showing only title of books having price below 30
d) Find book not written in German language.
e) Find books having price between 30 to 50
Find titles book having title more than 20 characters long.
Step by step
Solved in 2 steps