Stax is a push based XML Parser
B
Correct answer
Explanation
StAX (Streaming API for XML) uses a pull-based parsing model where the application controls when to read the next event. Push-based parsers like SAX generate events automatically and the application must handle them. Since StAX is pull-based, not push-based, the statement is False.