Questions
XML preserves white spaces
- True
- False
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>
What is a correct way of referring to a stylesheet called "style.xsl"?
- <stylesheet type="text/xsl" href="style.xsl" />
- <link type="text/xsl" href="style.xsl" />
- <?xml-stylesheet type="text/xsl" href="style.xsl" ?>
Which is not a correct name for an XML element?
- <first name>
- <age>
- <NAME>
What does DTD stand for?
- Document Type Definition
- Dynamic Type Definition
- Direct Type Definition
What makes XML more powerful than HTML?
- Not as much coding is needed
- Its ability to adapt to new uses
- The fact that its supported by all of the major software vendors
Unlike most other markup languages, including HTML, XML allows you to do what?
- Create new tags
- Exchange information over the Web
- Put your tags in any order, with closing tags optional
In what year did the World Wide Web Consortium release its draft of XML?
- 1994
- 1995
- 1996
- 1997
What organization presented the first version of Starndardized Generalized Markup Language (SGML) in 1980?
- Internet Engineering Task Force (IETF)
- IEEE
- American National Standards Institute (ANSI)
- OASIS
You can use XSL Transformation (XSLT) to convert database files described by XML to Structured Query Language (SQL) statements, which creates the tables, indexes and views that the XML data describes.
- True
- False