XmlReader is an abstract class. How do you create an instance of it to read an XML document?
What is the purpose of the XmlReaderSettings class?
Which of these classes cannot be used to update an XML document?
XmlDocument
XmlDataDocument
XmlPathDocument
Using the XML data from Listing 10-10, show the node values returned by the following XPath expressions:
//movies[substring( movie_Title,2,1)='a']
//movies[2]
//movies[movie_Year >= 1978]
//directors[last_name='Scorsese'] /movies/movie_Title
Describe two ways to perform schema validation on an XML document.