Multiple choice technology web technology

A SAX parser

  1. Organizes the XML document into a tree

  2. Reads a block of an XML document at a time

  3. Enables you to correct the contents of an XML document

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

SAX (Simple API for XML) is an event-based, streaming parser that reads XML documents sequentially in blocks. It doesn't build a tree structure like DOM parsers, and it's read-only - it cannot modify XML content. This makes it memory-efficient for large XML files.