🎴 Flashcard Mode
J2EE Design Patterns and Web Technologies
Card1 / 18
Mastered0
Review0
QuestionClick to flip
SAX can be used to modify XML
AnswerClick to flip back
A
False
💡 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.