XML document structure can be divided in which two parts?
XML document structure can be divided in which two parts? What is meant by valid XML document (write three points)? Write the code to create an
| Name | Job | Department | Cubicle |
| Srishti | Programmer | Engineering | 5E |
| Aditi | Desinger | Marketing | 19T |
4 views
1 Answers
XML document structure can be divided into two parts as follows:
1. Well-formed XML document
2. Valid XML document
A valid XML document means to follow several terms, such as follows:
1. It is not only a well-formed document but as well as check error against a DTD.
2. It signifies that a document is well-formed.
3. It uses XML parser, XML validator for validation.
The XML code is
4 views
Answered