Stax is a push based XML Parser
B
Correct answer
Explanation
StAX (Streaming API for XML) is a pull-based parser where the application explicitly requests the next event from the parser using methods like hasNext() and next(). This contrasts with SAX, which is push-based and pushes events to handler methods.