There are no comments, be the first and leave one below:
What does XML stand for
eXtra Modern Link
X-Markup Language
eXtensible Markup Language
Example Markup Language
There is a way of describing XML data, how?
XML uses a DTD to describe the data
XML uses XSL to describe data
XML uses a description node to describe 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 the statements are true
All XML elements must be lower case
All XML documents must have a DTD
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?
<1dollar>
<h1>
<Note>
All 3 names are incorrect
<age>
<NAME>
<first name>
<xmldocument>
<phone number>
<7eleven>
XML attribute values must always be enclosed in quotes
What does XSL stand for?
eXtensible Stylesheet Language
eXtensible Style Listing
eXtra Style Language
eXpandable Style Language
What is a correct way of referring to a stylesheet called "mystyle.xsl"
<?xml-stylesheet type="text/xsl" href="mystyle.xsl" ?>
<link type="text/xsl" href="mystyle.xsl" />
<stylesheet 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 </CDATA>
<xml:CDATA[ Text to be ignored ]>
<![CDATA[ Text to be ignored ]]>
<PCDATA> Text to be ignored </PCDATA>
XML Schemas Support Data Types
XML Schemas are Less Powerful than DTD
XML Schemas use DTD Syntax