adspace
Answer Posted / Sudil Kumar
The types of XML parsers include SAX (Simple API for XML), DOM (Document Object Model), Pull, and Streaming. SAX is an event-based parser that reads the XML document sequentially. DOM builds a tree representation of the entire document in memory. Pull parser allows you to read XML as a stream. Streaming parsers process the XML incrementally without loading the entire document into memory.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers