0
5.2kviews
What is valid XML document? Design DTD for address book XML document

Mumbai University > Information Technology > Sem 4 > Web Programming

Marks: 10M

Year: Dec 2015

1 Answer
0
134views
  • An XML document with correct syntax is called "Well Formed".
  • An XML document validated against a DTD is both "Well Formed" and "Valid".
  • A "Valid" XML document is a "Well Formed" XML document, which also conforms to the rules of a DTD:

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE note SYSTEM "Note.dtd">
    <note> …

Create a free account to keep reading this post.

and 3 others joined a min ago.

Please log in to add an answer.