Declarative Languages EXAM Flashcards
What does XML stand for?
Extensible Markup Language
What are HTML and XML based on?
Standard Generalized Markup Language (SGML)
What is the difference between HTML and XML?
HTML is about how to present the data, XML is about the data itself
What version of XML does this course focus on?
Version 1.0
How do you specify a comment in XML?
< !– The comment – >
How do you specify unparsed character data?
< ![CDATA[ ]] >
Are XML elements case sensitive?
Yes
What part of an XML doc is like metadata?
Attribute
Elements are thought of as ______ and attributes as ______
Nouns, Adjectives
Is the XML Declaration required?
No, but recommended
If the version isn’t specified in the declaration, what version is assumed?
Latest version (1.1)
What is an entity?
A way to specify a special character and not have it parsed.
&
What does the DOM do?
Provides a way to query and manipulate XML documents
How does the DOM structure an XML document?
a Tree
What does the DOM standard define a set of?
Interfaces
What is the fundamental interface in the DOM?
Node
What is a NamedNodeMap typically used for?
Attributes
What type of Node supports Attributes in the DOM?
Element
How many children does an Attr Node have?
Exactly 1
What does the Document class inherit from in the DOM?
Node
What type of XML schema has become the standard?
XSD
What is the XML document that a schema applies to?
Instance Document
What are the 2 basic parts of an XML schema?
- Data types
- Structures
What do schema definitions do?
Create new types
What do schema declarations do?
Describe content models of elements and attributes in document instances
What is the URL of the schema in the preamble?
http://www.w3.org/2001/XMLSchema
What 2 ways can you associate a schema with a document?
- parser
- schemaLocation or noNamespaceSchemaLocation attribute
What are the 4 primary schema components?
- Element declarations
- Simple Type definitions
- Complex Type definitions
- Attribute declarations
What is the syntax of an element declaration?
< xsd:element name=”name” type=”type” minOccurs=”int” maxOccurs=”int”/ >
In an element declaration, the maxOccurs attribute can be a positive int or what?
unbounded
All XML schema data types are comprised of what 3 parts?
- Value space
- Lexical space
- Set of Facets
What is a complex type?
A set of attribute declarations and content type that pertain to the attributes and children of the element
What 2 places can attribute declarations be placed?
- Globally scoped within the < schema > element
- Within a complex type declaration