SAX can be used to modify XML
B
Correct answer
Explanation
SAX is a read-only, event-based parser that cannot modify XML documents. It only provides sequential access for reading. To modify XML, you would need DOM or other tree-based parsers that load and allow manipulation of the document structure.