Description
XPath is the language we use to along with XQuery to navigate through an XML document and pull back only the information we need.
Take a look at the example food menu from w3schools.com: https://www.w3schools.com/xml/simple.xml
Save the breakfast_menu.xml file and return all names of foods with calories less than 700 order by food name.
You will need to complete the XPath Tutorial here:
https://www.w3schools.com/xml/xpath_intro.asp
An XPath Validator can be found here:
http://www.freeformatter.com/xpath-tester.html
Your output for the XPath should look like this: Element='<name>Belgian Waffles</name>’
Element='<name>French Toast</name>’
Please submit your single line of XPath code.
Rubric for week4 assignmentPoints Xpath Statement 100total 100points
Your final submission for this assignment will be one line of code.