Which three statements are true about JAXP APIs? (Choose three.)
A.
They are a part of Java SE 6.
B.
They allow Java developers to access and process XML data without having to know XML or XML processing.
C.
They do NOT support validation of XML documents against schemas.
D.
It supports the Streaming API for XML.
E.
It requires the Streaming API for XML.
F.
They provide developers with a vendor and parser-implementation independent API to process XML.
A D F
JAXP (Java API for XML Processing) is a rather outdated umbrella term covering the various low-level XML APIs in JavaSE, such as DOM, SAX and StAX.
JAXB (Java Architecture for XML Binding) is a specific API (the stuff under javax.xml.bind) that uses annotations to bind XML documents to a java object model.
JAXP 1.4 is a maintenance release of JAXP 1.3 with support for the Streaming API for XML (StAX)
https://jaxp.java.net/