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
Correct
1.00 points out of 1.00
Flag question
Question text
What are XML entities used for?
Select one:
a. Entities define shortcuts to standard attributes
b. Entities define shortcuts to standard elements
c. Entities define shortcuts to standard text or special characters
Feedback
Your answer is correct.
The correct answer is: Entities define shortcuts to standard text or special characters
Question 4
Correct
1.00 points out of 1.00
Flag question
Question text
What does DTD stand for?
Select one:
a. Dynamic Type Definition
b. Do The Dance
c. Document Type Definition
d. Direct Type Definition
Feedback
Your answer is correct.
The correct answer is: Document Type Definition
Question 5
Correct
1.00 points out of 1.00
Flag question
Question text
What does XML stand for?
Select one:
a. X-Markup Language
b. eXtensible Markup Language
c. Example Markup Language
d. eXtra Modern Link
Feedback
Your answer is correct.
The correct answer is: eXtensible Markup Language
Question 6
Correct
1.00 points out of 1.00
Flag question
Question text
What does XSL stand for?
Select one:
a. eXpandable Style Language
b. eXtra Style Language
c. eXtensible Style Listing
d. eXtensible Stylesheet Language
Feedback
Your answer is correct.
The correct answer is: eXtensible Stylesheet Language
Question 7
Correct
1.00 points out of 1.00
Flag question
Question text
What is a correct way of referring to a stylesheet called “mystyle.xsl” ?
Select one:
a. <?xml-stylesheet type=“text/xsl” href=”mystyle.xsl” ?>
b. <link type=”text/xsl” href=”mystyle.xsl” />
c. <stylesheet type=”text/xsl” href=”mystyle.xsl” />
Feedback
Your answer is correct.