A. All XML documents must have DTD
B. All XML elements must have lowercase
C. All XML elements must be closed
D. All the statements are true
Sign Up to our social questions and Answers Engine to ask questions, answer people's questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The correct answer: D. All the statements are true.
All XML documents must have DTD: A DTD specifies which tags are allowed in your XML document, how those tags can be structured and named. All documents must have one DTD located at the top.
All XML elements must have lowercase: The first letter of all elements must be lowercase. All XML attributes must have lowercase: The first letter of all attribute names must be lowercase.
All XML elements must be closed: All elements must be closed, i.e., end with /> . XML attributes must be quoted: All attribute values (including element content) must always be within quotes. Single or double quotes are acceptable as long as they match.