• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/24

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

24 Cards in this Set

  • Front
  • Back
A large section of block text that XML treats as character data only.
CDATA Section (XML)
<! {CDATA{
character Data
}}>
The syntax for creating the CDATA section in XML
An XML vocabulary used to code molecular and chemical data.
Chemical Markup Language
Used to store and evaluate mathematical operator.
MathML
A collection of rules that define the content and structure of an XML document.
document type definition
DTD
An element nested within its parent element
child element
A metalanguage like SGML, but without SGML complexity and overhead; used to design markup langaugessuch as XHTML
Extensilbe Markup Language
An International numbering system for referencing characters from virtually any language
ISO/IEC Character Set
An XML Parser devolped by microsoft for use with the Internet Explorer browser
MSXML
An element containing another element as part of its content
Parent element
An XML command that provides an instruction to the XML Parser for processing XML Documents
Processing instructions
The top most element in an XML document containing all other elements.
Root element
or
document element
A device and system independent metalanguage , used to create markup languages including html
Standard generalized markup language.
SGML
An XML document that is well formed and satisfies the rules of a DTD or schema.
valid document
A markup language based on XML tailored to contain specific pieces of information.
XML application
or
XMLvocabulary
A Program that checks an XML document for errors in syntax and content
XML Parser
the same as an XML parser
XML Processor
What code would you enter to connect your document to a DTD stored in a file books.dtd?
<!DOCTYPE Inventory SYSTEM "books.dtd">
What declaration would you enter to allow the book element to contain any content?
<!ELEMENT book ANY>
What declaration would you enter to specify that the video element can contain?
<!ELEMENT video EMPTY>
What declaration would you enter to indicate only the book data can contain parsed character data?
<!ELEMENT book (#PCDATA)>
What declaration would you enter to indicate that the book contains only a single child named author
<!ELEMENT book (author)>
What declaration would you enter to indicate that the book
element can contain one or more child elements?
<!ELEMENT book (author)+>
What declaration would you enter to indicate that the book
element can contain a choice of mixed content including parsed character data
<!ELEMENT book (author)+>