Multiple choice technology web technology

SAX can be used to modify XML

  1. True

  2. False

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

This is false. SAX cannot be used to modify XML because it's a read-only, forward-only parser. It doesn't build a tree structure or maintain the document in memory - it just fires events as it reads. To modify XML, you need DOM (which loads the full tree) or use StAX with write capabilities. The claimed answer (B/False) is correct.