Is XML a W3C recommendation?.
Is there any error in the following XML document?
<note>
<to>Tove</to>
<from>Jani</From>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
From
What does XML stand for?
Extensible Markup Language
What is a piece of data in XML, bounded by a start and end tag. That may contain attributes, text, or child elements?
Element
Special information about an element that contains additional information about the element. They are contained within the element's opening tag
Attrubibute
How do we call the outermost element that contains the XML document?
Rot element.
An element nested within another element.
Child Element's
If an XML document complies with the XML specification, if it is properly marked up and if elements are properly nested, we say that this XML document is:
Well formed
Is there any error in the following XML document?.
<note id=20>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
id="20"
How do you write a XML comment.
<!-- This is a comment -->
Is there any error in the following XML document?
<nome> Carmen </nome>
<apelido> Agulla </apelido>
The root element is missing
Correct the errors in the following document (if there are any):
<note id=20>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
<other \>
</note>
Yes, it should be <other />
Cascading Style Sheet is a language that can be used to describe the presentation of XML elements.
CSS
All XML Elements must have _________ and ________ tag.
opening, closing
Attributes:
a) can be within the opening tag
b) can be within the closing tag
c) both are correct
A
White spaces within an XML element are not preserved. True or false?
<name>My name is Forest
Gu ummp</name>
False
The term referring to the idea every element has to be within the opening and closing tag of its parent node is called
Nesting
What caracters can contain an XML tag name?
leters, digits, hyphens, underscores, periods
Tag names are case insensitive
The XML prolog is:
<?xml version="1.0" encondig="UTF-8"?>
<?xml version="1.1" encondig="UTF-8"?>
Describe the structure of an XML document and defines the building blocks
XML Schema
Extensible Path Language, used to extract data from an XML file.
XPATH
Used to perform query functions on XML data, similar to SQL for databases
XQUERY
Extensible Stylesheet Language Transformations, a styling language that can transform XML file into another file type (HTML, PDF, MS Word, etc.)
XSLT
The XML special characters, also called chacarcter entitis, are:
< > & ' "