What does XML stand for
X-Markup Language
eXtra Modern Link
Example Markup Language
eXtensible Markup Language
There is a way of describing XML data, how?
XML uses XSL to describe data
XML uses a description node to describe data
XML uses a DTD to describe the data
XML's goal is to replace HTML
What is the correct syntax of the declaration which defines the XML version?
<?xml version="1.0"?>
<?xml version="1.0" />
<xml version="1.0" />
What does DTD stand for?
Do The Dance
Document Type Definition
Direct Type Definition
Dynamic Type Definition
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>
<?xml version="1.0"?> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body>
Which statement is true?
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
XML tags are case sensitive
XML elements must be properly nested
XML documents must have a root tag
XML preserves white spaces
<?xml version="1.0"?> <note> <to age="29">Tove</to> <from>Jani</from> </note>
XML elements cannot be empty
Which is not a correct name for an XML element?
<h1>
<Note>
All 3 names are incorrect
<1dollar>
<first name>
<NAME>
<age>
<phone number>
<7eleven>
<xmldocument>
XML attribute values must always be enclosed in quotes
What does XSL stand for?
eXtensible Style Listing
eXtra Style Language
eXtensible Stylesheet Language
eXpandable Style Language
What is a correct way of referring to a stylesheet called "mystyle.xsl"
<stylesheet type="text/xsl" href="mystyle.xsl" />
<?xml-stylesheet type="text/xsl" href="mystyle.xsl" ?>
<link type="text/xsl" href="mystyle.xsl" />
For the XML parser to ignore a certain section of your XML document, which syntax is correct?
<![CDATA[ Text to be ignored ]]>
<xml:CDATA[ Text to be ignored ]>
<PCDATA> Text to be ignored </PCDATA>
<CDATA> Text to be ignored </CDATA>
XML Schemas are Less Powerful than DTD
XML Schemas Support Data Types
XML Schemas use DTD Syntax