![Java XML Tutorial](https://www.tutorialspoint.com/java_xml/images/javaxml-mini-logo.jpg)
- Java XML Tutorial
- Java XML Home
- Java XML Overview
- Java XML Parsers
- Java DOM Parser
- Java DOM Parser
- Parse XML Document
- Query XML Document
- Create XML Document
- Modify XML Document
- Java SAX Parser
- Java SAX Parser
- Parse XML Document
- Query XML Document
- Create XML Document
- Modify XML Document
- JDOM XML Parser
- JDOM XML Parser
- Parse XML Document
- Query XML Document
- Create XML Document
- Modify XML Document
- Java StAX Parser
- Java StAX Parser
- Parse XML Document
- Query XML Document
- Create XML Document
- Modify XML Document
- Java XPath Parser
- Java XPath Parser
- Parse XML Document
- Query XML Document
- Create XML Document
- Modify XML Document
- Java DOM4J Parser
- Java DOM4J Parser
- Parse XML Document
- Query XML Document
- Create XML Document
- Modify XML Document
- Java XML Useful Resources
- Java XML - Questions and Answers
- Java XML - Quick Guide
- Java XML - Useful Resources
- Java XML - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java XML Online Quiz
Following quiz provides Multiple Choice Questions (MCQs) related to Java XML Framework. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.
![Questions and Answers](https://www.tutorialspoint.com/images/questions_and_answers.png)
Q 1 - Which of the following parses the document in similar fashion to DOM parser but in more easier way?
Answer : C
Explaination
JDOM Parser parses the document in similar fashion to DOM parser but in more easier way.
Q 2 - What DOM stands for?
Answer : C
Explaination
DOM stands for Document Object Model.
Q 3 - Which of the following method get called when document begins in SAX parsing?
Answer : A
Explaination
startDocument() method is called at the beginning of a document.
Q 4 - Which method of JDOM Parser gets all the direct child nodes of an element?
Answer : A
Explaination
Element.getChildren() gets all the direct child nodes of an element.
Q 5 - XPath provides a rich library of standard functions for manipulation of string values, numeric values, date and time comparison, node and QName manipulation, sequence manipulation, Boolean values etc.
Answer : A
Explaination
XPath provides a rich library of standard functions for manipulation of string values, numeric values, date and time comparison, node and QName manipulation, sequence manipulation, Boolean values etc.
Answer : B
Explaination
No! XPath parser is used to to navigate XML Document only. It is better to use DOM parser for creating XML.
Q 7 - Which of the following method of DOM4J Parser gets all the attributes of an element?
Answer : C
Explaination
Node.valueOf(@Name) gets all the attributes of an element.
Q 8 - What is a SAX Parser?
A - SAX Parser is an event-based parser for xml documents.
Answer : C
Explaination
SAX Parser is an event-based parser for xml documents.SAX Parser is PUSH API Parser so that client application is required to get information when SAX parser notifies the client application that information is available.
Answer : A
Explaination
StAX parser is a PULL API. It means in case of StAX parser, client application need to ask StAX parser to get information from XML whenever it needs.
Q 10 - Which method of the following of StAX Parser can be used to retrieve value and attributes of element?
Answer : A
Explaination
StartElement asStartElement() of XMLEventReader class can be used to retrieve value and attributes of element.