XML DOM Question:

Download Job Interview Questions and Answers PDF

Explain the difference between DOM and SAX?

XML DOM Interview Question
XML DOM Interview Question

Answer:

SAX parser works incrementally and generates events that are passed to the application. DOM parser reads the whole XML document and returns a DOM tree representation of xml document

In DOM the xml file is arranged as a tree and backward and forward search is possible In SAX traversing in any direction is not possible as Top to bottom approach is used.
SAX is essentially an API for reading XML, and not writing it. DOM allows you to read and write.

Download XML DOM Interview Questions And Answers PDF

Previous QuestionNext Question
List the features of DOM?Define DOM?