Answer :
- SAX processes XML document as a stream, resulting in lower memory consumption.
Explanation :
SAX (Simple API for XML) processes XML data through event-driven parsing, reading one node at a time, which significantly reduces memory consumption compared to DOM, which loads the entire document into memory.