Stax is a push based XML Parser
B
Correct answer
Explanation
StAX (Streaming API for XML) is a pull-based parser where the application controls parsing by requesting events from the parser. This contrasts with SAX which is push-based (parser drives the application). The claimed answer correctly identifies that StAX is not push-based.