Multiple choice technology web technology

Stax is a push based XML Parser

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
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.