Question 1
Correct
1.00 points out of 1.00
Flag question
Question text
For the XML parser to ignore a certain section of your XML document, which syntax is correct?
Select one:
a. <PCDATA> Text to be ignored </PCDATA>
b. <xml:CDATA[ Text to be ignored ]>
c. <![CDATA[ Text to be ignored ]]>
Feedback
Your answer is correct.
The correct answer is: <![CDATA[ Text to be ignored ]]>
Question 2
Correct
1.00 points out of 1.00
Flag question
Question text
There is a way of describing XML data, how?
Select one:
a. XML uses a description node to describe data
b. XML uses a DTD to describe the data
c. XML uses XSL to describe data
Feedback
Your answer is correct.
The correct answer is: XML uses a DTD to describe the data
Question 3