Write a script to solve following questions(use “Book.xml” file) A:- Create a Dom document object and load this xml file. B:- Get the output of this document to the browser. C:- Save this [.xml] document in another format that i.e. in [.doc]. D:- Write a xml program to print the names of the books available in “Book.xml” file.
Book.xml <?xml version="1.0" encoding="utf-8"?> <ABCBOOK> <Technical> <BOOK> <Book_PubYear>ABC</Book_PubYear> <Book_Title>pqr</Book_Title> <Book_Author>400</Book_Author> </BOOK> </Technical> <Cooking> <BOOK> <Book_PubYear>ABC</Book_PubYear> <Book_Title>pqr</Book_Title> <Book_Author>400</Book_Author> </BOOK>...