Multiple choice technology web technology

JAX-B

  1. That can be used to generate Java classes from an XML schema

  2. Can be used to read and write XML using Java classes generated from an XML schema

  3. A and B

  4. Is used for parsing XML using SAX and DOM

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

JAXB provides two-way binding between XML schemas and Java classes. It can generate Java classes from an XML schema through the binding compiler, and these classes can then be used to read (unmarshal) and write (marshal) XML documents. This bidirectional capability makes it useful for both processing and generating XML.