Write in XPath the following queries for the DBLP application and run them:
/dblp/phdthesis[author = "Andreas Neumann"]
/dblp/article[count(author) >= 4]
/dblp/*[year = 2000 and contains(title, "XML") and (self::inproceedings or self::article)]oppure
/dblp/inproceedings[year = 2000 and contains(title, "XML")] | /dblp/article[year = 2000 and contains(title, "XML")]
count(/dblp/article) div count(/dblp/*)
count(/dblp/article[count(author) = 1]) div count(/dblp/article)
count(/dblp/inproceedings/author) div count(/dblp/inproceedings)
/dblp/*[author = "Massimo Franceschet"]/author[position() = 1]
/dblp/*[@key = "journals/ci/CervesatoFM00"]/author[position() = 1] | /dblp/*[@key = "journals/ci/CervesatoFM00"]/author[position() = last()]
/dblp/*[@key = "journals/ci/CervesatoFM00"] /author[preceding-sibling::author[. = "Massimo Franceschet"]]oppure
/dblp/*[@key = "journals/ci/CervesatoFM00"] /author[. = "Massimo Franceschet"]/following-sibling::author
dblp/*[@key = "journals/ci/CervesatoFM00"]/following::proceedings
/dblp/*/title//i