A.該XML文檔的數(shù)據(jù)模型是完整的
B.該XML文檔的定義是正確的
C.該XML文檔的數(shù)據(jù)是正確的
D.該XML文檔的格式是正確的
您可能感興趣的試卷
你可能感興趣的試題
A.<xsd:simpleType name="idNumber"><xsd:union><xsd:simpleType><xsd:restriction base="xsd:integer"/></xsd:simpleType><xsd:simpleType><xsd:restriction base="xsd:string"/></xsd:simpleType></xsd:union></xsd:simpleType>
B.<xsd:simpleType name="idNumber"><xsd:list><xsd:simpleType><xsd:restriction base="xsd:integer"/></xsd:simpleType><xsd:simpleType><xsd:restriction base="xsd:string"/></xsd:simpleType></xsd:list></xsd:simpleType>
C.<xsd:simpleType name="idNumber"><xsd:all><xsd:simpleType><xsd:restriction base="xsd:integer"/></xsd:simpleType><xsd:simpleType><xsd:restriction base="xsd:string"/></xsd:simpleType></xsd:all></xsd:simpleType>
D.<xsd:simpleType name="idNumber"><xsd:choice><xsd:simpleType><xsd:restriction base="xsd:integer"/></xsd:simpleType><xsd:simpleType><xsd:restriction base="xsd:string"/></xsd:simpleType></xsd:choice></xsd:simpleType>
A./
B.//
C.*
D.#
A.dumps()
B.loads()
C.load()
D.dump()
A.< xs:element name="decimals">< xs:simpleType>< xs:restriction base="xs:decimal">< xs:minInclusive value="-3.0"/>< xs:maxInclusive value="8.6"/>< /xs:restriction>< /xs:simpleType>< /xs:element>
B.< xs:element name="decimals">< xs:simpleType>< xs:union itemType="xs:decimal">< /xs:simpleType>< /xs:element>
C.< xs:element name="decimals">< xs:simpleType>< xs:list itemType="xs:decimal">< /xs:simpleType>< /xs:element>
D.< xs:element name="decimals">< xs:simpleType>< xs:all itemType="xs:decimal">< /xs:simpleType>< /xs:element>
針對上述XML文件,以下是stud.xsl 。
此XML在IE中的輸出是()。
A.李華
B.IE輸出錯誤信息
C.無輸出
D.< name>李華< /name>
A.>;
B.<;
C.&;
D.&apos;
Report.xml中包含subject 元素,該元素可以包含某HTML 標記,如下:
< subject>
< b>2008年< /b>< i>北京奧運會< i>展望
< /subject>
現(xiàn)需要編寫一個XML schema來定義該xml文檔內(nèi)容的結(jié)構(gòu),以下的schema片斷中,()可以使Report.xml通過有效性驗證。
A.<xsd:element name="subject"><xsd:complexType mixed="true"><xsd:all><xsd:element name="i"minOccurs="0"maxOccurs="unbounded"type="xsd:string"/><xsd:element name="b"minOccurs="0"maxOccurs="unbounded"ty
B.<xsd:element name="subject"type="xsd:string"/>
C.<xsd:element name="subject"type="xsd:anyType"/>
D.<xsd:element name="subject"><xsd:complexType mixed="true"><xsd:sequence><xsd:element name="i"minOccurs="0"maxOccurs="unbounded"type="xsd:string"/><xsd:element name="b"minOccurs="0"maxOccurs="unbounded"
A.@
B.*
C.?
D.#
<roster><student ID="s101">;
<name>;李華<;/name>;
<sex>;男<;/sex>;
<birthday>;1978.9.12<;/birthday>;
<score>;92<;/score>;
</student>;
<student ID="s102">;
<name>;齊輝<;/name>;
<sex>;女<;/sex>;
<birthday>;1979.3.2<;/birthday>;
<score>;90<;/score>;
</student>;
</roster>;
針對上述XML代碼,輸出ID為s102的學生的姓名的XSL片段正確的是()。
A.<xsl:template match="/roster"><xsl:value-of select=".[@ID=’s102’]/name"/></xsl:template>
B.<xsl:template match="/roster"><xsl:value-of select="student[@ID=’s102’]/name"/></xsl:template>
C.<xsl:template match="/roster"><xsl:value-of select="[student@ID=’s102’]/name"/></xsl:template>
D.<xsl:template match="/"><xsl:value-of select="student[@ID=’s102’]/name"/></xsl:template>
最新試題
下列一些類中,用來表示XML中節(jié)點的是()。
()語法用于編寫Schema。
<customer_summaryxmlns:addr="http://www.xyz.com/addresses/"xmlns:books="http://www.zyx.com/books/"><addr:name><title>Mrs.</title></addr:name><books:title>Lord of the Rings</books:title>上述是一段關(guān)于XML命名空間的實例片段,以下說法錯誤的是()。
<stuList><student id="a001"><name>jack<name><age>22</age></student><student id="a002"><name>make<name><age>23</age></student></stuList>查找id=’a002’的xpath表達式是()。
定義樣式表中的變量,使用的標簽是()。
表達式中的未知節(jié)點的是()。
下列符號中,能夠分隔XPath表達式中任意兩個節(jié)點的是()。
下列選項中,提供了遍歷和搜索文檔樹的大部分方法的類是()。
對于XML文檔實例-2.0-3.08.6,最恰當?shù)孛枋鏊慕Y(jié)構(gòu)的XML Schema片段是()。
“<”用DTD的內(nèi)部實體()表示。