Zusammenfassung der Ressource
Frage 1
Frage
What does XML stand for
Frage 2
Frage
There is a way of describing XML data, how?
Antworten
-
XML uses XSL to describe data
-
XML uses a description node to describe data
-
XML uses a DTD to describe the data
Frage 3
Frage
XML's goal is to replace HTML
Frage 4
Frage
What is the correct syntax of the declaration which defines the XML version?
Antworten
-
<?xml version="1.0"?>
-
<?xml version="1.0" />
-
<xml version="1.0" />
Frage 5
Frage
What does DTD stand for?
Antworten
-
Do The Dance
-
Document Type Definition
-
Direct Type Definition
-
Dynamic Type Definition
Frage 6
Frage
Is this a "well formed" XML document?
<?xml version="1.0"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
Frage 7
Frage
Is this a "well formed" XML document?
<?xml version="1.0"?>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
Frage 8
Frage
Which statement is true?
Antworten
-
All XML elements must be properly closed
-
All XML documents must have a DTD
-
All the statements are true
-
All XML elements must be lower case
Frage 9
Frage
Which statement is true?
Antworten
-
XML tags are case sensitive
-
XML elements must be properly nested
-
All the statements are true
-
XML documents must have a root tag
Frage 10
Frage
XML preserves white spaces
Frage 11
Frage
Is this a "well formed" XML document?
<?xml version="1.0"?>
<note>
<to age="29">Tove</to>
<from>Jani</from>
</note>
Frage 12
Frage
XML elements cannot be empty
Frage 13
Frage
Which is not a correct name for an XML element?
Frage 14
Frage
Which is not a correct name for an XML element?
Frage 15
Frage
Which is not a correct name for an XML element?
Frage 16
Frage
XML attribute values must always be enclosed in quotes
Frage 17
Frage
What does XSL stand for?
Frage 18
Frage
What is a correct way of referring to a stylesheet called "mystyle.xsl"
Antworten
-
<stylesheet type="text/xsl" href="mystyle.xsl" />
-
<?xml-stylesheet type="text/xsl" href="mystyle.xsl" ?>
-
<link type="text/xsl" href="mystyle.xsl" />
Frage 19
Frage
For the XML parser to ignore a certain section of your XML document, which syntax is correct?
Antworten
-
<![CDATA[ Text to be ignored ]]>
-
<xml:CDATA[ Text to be ignored ]>
-
<PCDATA> Text to be ignored </PCDATA>
-
<CDATA> Text to be ignored </CDATA>
Frage 20
Frage
Which statement is true?
Antworten
-
XML Schemas are Less Powerful than DTD
-
XML Schemas Support Data Types
-
XML Schemas use DTD Syntax