What does SAX stand for in the context of XML processing?
A) Simple API for XML
B) Standard API for XML
C) Secure API for XML
D) Streaming API for XML
Answer:
A) Simple API for XML
Explanation:
SAX stands for Simple API for XML. It is an event-driven, streaming API used to process XML documents. SAX is memory-efficient because it processes the XML document sequentially, without loading the entire document into memory. It is ideal for parsing large XML files.