|
||||
![]() |
|
Index >> XML Master >> XMLMaster Certification >> "I10-002 Exam" I10-002 Exam FeaturesXML Master: Professional V2
XMLMaster Certification I10-002 考試題庫 XMLMaster Certification I10-002 考試題庫由我們的資深IT認證講師及產品專家精心打造,包括了當前最新的全套全真I10-002考試試題,全部附有正確答案。所有購買本站認證考題的客戶都將得到60天的免費升級服務,保證了對XML Master: Professional V2考試題庫的完整覆蓋。 助妳壹次通過 XML Master: Professional V2 認證考試,壹次不過全額退款! 1、I10-002 Exam試題都是考試原題的完美組合,覆蓋率96%以上,答案由多位專業資深講師原版破解得出,正確率100%,只要您使用本站的題庫參加 XML Master: Professional V2 考試,我們保證您壹次輕松通過考試; 2、售後服務第壹!我們相信要想在當今時代取得成功,必須為廣大用戶提供全套的周到細致的全程優質售後服務,只有客戶滿意了,我們才能發展。 3、我們實行“壹次不過全額退款”承諾。如果您購買我們的考題,只要不是首次通過,憑蓋有PROMETRIC或VUE考試中心鋼印的考試成績單,我們將退還您購買 I10-002 考題的全部費用,絕對保證您的利益不受到任何的損失; 4、XML Master: Professional V2 題庫根據廠家考試的變化動態更新,在廠家考題每次發生變化後,我們承諾2天內更新 XML Master: Professional V2 題庫。確保 XML Master: Professional V2 考題的覆蓋率始終都在96%以上。 I10-002:點擊下載 I10-002 考試題庫預覽部分(PDF格式) I10-002題庫預覽(DEMO)1. Select which of the following correctly describes WSDL. (WSDL 1.1)
A. WSDL assumes SOAP as the message transmission form B. When WSDL is defined by a combination of style="rpc" and use="encoded", then encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" must be designated C. When WSDL is defined by a combination of style="rpc" and use="encoded", then the encodingStyle attribute cannot be designated D. WSDL may be defined by a combination of style="rpc" and use="literal" Answer: D 2. Which of the following describes the most correct call order of the ContentHandler interface methods when parsing the following "XML Document" using a non-validating SAX parser? This question reflects line feeds within the XML document. [XML Document] <a> <b> c </b> </a> A. startDocument - startElement - characters - startElement - characters - characters - characters - endElement - characters - endElement - endDocument B. startDocument - startElement - ignorableWhitespace - startElement - ignorableWhitespace - characters - ignorableWhitespace - endElement - ignorableWhitespace - endElement - endDocument C. startDocument - startElement - startElement - characters - endElement - endElement - endDocument D. startDocument - startElement - startElement - characters - characters - endElement - endElement - endDocumentW Answer: A 3. Push the Exhibit Button to load the referenced "XML Document". [XML Document] <TestML xmlns="urn:xmlmaster:testml"> <record level="1" data="100" /> <record level="2" data="250" /> </TestML> Choose the XML Schema Document that does not correctly define the structure of the "XML Document". A. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:xmlmaster:testml" xmlns:tns="urn:xmlmaster:testml" > <xs:element name="TestML" type=" tns:testmlType " /> <xs:complexType name="testmlType"> <xs:sequence> <xs:element ref=" tns:record " maxOccurs="unbounded" /> </xs:sequence> </xs:complexType> <xs:element name="record" type=" tns:recordType " /> <xs:complexType name="recordType"> <xs:attribute name="level" type="xs:int" /> <xs:attribute name="data" type="xs:int" /> </xs:complexType> </xs:schema> B. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:xmlmaster:testml" xmlns="urn:xmlmaster:testml" > <xs:element name="TestML" type=" testmlType " /> <xs:complexType name="testmlType"> <xs:sequence> <xs:element ref=" record " maxOccurs="unbounded" /> </xs:sequence> </xs:complexType> <xs:element name="record" type=" recordType " /> <xs:complexType name="recordType"> <xs:attribute name="level" type="xs:int" /> <xs:attribute name="data" type="xs:int" /> </xs:complexType> </xs:schema> C. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:xmlmaster:testml" > <xs:element name="TestML" type=" testmlType " /> <xs:complexType name="testmlType"> <xs:sequence> <xs:element ref=" record " maxOccurs="unbounded" /> </xs:sequence> </xs:complexType> <xs:element name="record" type=" recordType " /> <xs:complexType name="recordType"> <xs:attribute name="level" type="xs:int" /> <xs:attribute name="data" type="xs:int" /> </xs:complexType> </xs:schema> D. <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:xmlmaster:testml" xmlns:tns="urn:xmlmaster:testml"> <element name="TestML" type="tns:testmlType" /> <complexType name="testmlType"> <sequence> <element ref="tns:record" maxOccurs="unbounded" /> </sequence> </complexType> <element name="record" type="tns:recordType" /> <complexType name="recordType"> <attribute name="level" type="int" /> <attribute name="data" type="int" /> </complexType> </schema> Answer: C 4. Which of the following correctly describes the DOM (Level 2) Node interface? A. The Node interface can be used to change the value (nodeValue) of the DOM element node (Element) B. The Node interface can be used to change the name (nodeName) of the DOM element node (Element) C. The Node interface can be used to change the value (nodeValue) of the DOM attribute node (Attr) D. The Node interface can be used to change the name (nodeName) of the DOM attribute node (Attr) Answer: C 5. Push the Exhibit Button to load the referenced "XML Document 1" and "XML Document 2," and process XML using "DOM Processing." Select which of the following is the most appropriate expression of the results under XML 1.0. Line feeds and/or indents are not reflected in the results. A. <root2 xmlns="urn:xmlmaster:EX2"> <data xmlns= " urn:xmlmaster:EX1 " >string value</data> </root2> B. <root2 xmlns="urn:xmlmaster:EX2"> <data>string value</data> </root2> C. <root2 xmlns="urn:xmlmaster:EX2"> <data xmlns= " urn:xmlmaster:EX1 " /> </root2> D. <root2 xmlns="urn:xmlmaster:EX2"> <data/> </root2> Answer: A 6. Push the Exhibit Button to load the referenced "XML document". [XML Document] <root><data>lmnop</data></root> Assume that the "XML Document" is changed to the "Results XML Document." Select which XSLT style sheet correctly performs the transformation. Note that the XSLT processor can output transformation results as a document. [Results XML Document] <ZZZ><YYY>lmnop</YYY></ZZZ> A. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:include href="exam.xsl" /> <xsl:template match= " / " > <xsl:apply-templates select= " root " /> </xsl:template> <xsl:template match= " root " > <AAA><BBB><xsl:value-of select= " data " /></BBB></AAA> </xsl:template> </xsl:stylesheet> [exam.xsl] <xsl:stylesheet version= " 1.0 " xmlns:xsl= " http://www.w3.org/1999/XSL/Transform " > <xsl:template match= " //root " > <ZZZ><YYY><xsl:value-of select= " data " /></YYY></ZZZ> </xsl:template> </xsl:stylesheet> B. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:import href="exam.xsl" /> <xsl:template match= " / " > <xsl:apply-templates select= " root " /> </xsl:template> <xsl:template match= " root " > <AAA><BBB><xsl:value-of select= " data " /></BBB></AAA> </xsl:template> </xsl:stylesheet> [exam.xsl] <xsl:stylesheet version= " 1.0 " xmlns:xsl= " http://www.w3.org/1999/XSL/Transform " > <xsl:template match= " //root " > <ZZZ><YYY><xsl:value-of select= " data " /></YYY></ZZZ> </xsl:template> </xsl:stylesheet> C. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:include href="exam.xsl" /> <xsl:template match= " / " > <xsl:apply-templates select= " root " /> </xsl:template> <xsl:template match= " root " > <AAA><BBB><xsl:value-of select= " data " /></BBB></AAA> </xsl:template> </xsl:stylesheet> [exam.xsl] <xsl:stylesheet version= " 1.0 " xmlns:xsl= " http://www.w3.org/1999/XSL/Transform " > <xsl:template match= " root " > <ZZZ><YYY><xsl:value-of select= " data " /></YYY></ZZZ> </xsl:template> </xsl:stylesheet> D. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:import href="exam.xsl" /> <xsl:template match= " / " > <xsl:apply-templates select= " root " /> </xsl:template> <xsl:template match= " root " > <AAA><BBB><xsl:value-of select= " data " /></BBB></AAA> </xsl:template> </xsl:stylesheet> [exam.xsl] <xsl:stylesheet version= " 1.0 " xmlns:xsl= " http://www.w3.org/1999/XSL/Transform " > <xsl:template match= " root " > <ZZZ><YYY><xsl:value-of select= " data " /></YYY></ZZZ> </xsl:template> </xsl:stylesheet> Answer: A 7. Push the Exhibit Button to load the referenced "XML Document". [XML Document] <root><data>lmnop</data></root> Assume that the "XML document" is changed to the "Results XML Document." Select which XSLT style sheet correctly performs the transformation. Note that the XSLT processor can output transformation results as a document. [Results XML Document] <lmnop/> Or <lmnop></lmnop> A. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match= " / " > <xsl:apply-templates select= " root/data " /> </xsl:template> <xsl:template match= " data " > <xsl:element name="<xsl:value-of select='.'/>"/> </xsl:template> </xsl:stylesheet> B. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match= " / " > <xsl:apply-templates select= " root/data " /> </xsl:template> <xsl:template match= " data " > <xsl:element name="{ . }"/> </xsl:template> </xsl:stylesheet> C. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match= " / " > <xsl:apply-templates select= " root/data " /> </xsl:template> <xsl:template match= " data " > <xsl:element name="."/> </xsl:template> </xsl:stylesheet> D. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match= " / " > <xsl:apply-templates select= " root/data " /> </xsl:template> <xsl:template match= " data " > <xsl:text disable-output-escaping="no"><</xsl:text> <xsl:value-of select="."/> <xsl:text disable-output-escaping="no">/></xsl:text> </xsl:template> </xsl:stylesheet> Answer: B 8. Push the Exhibit Button to load the referenced "XML Document". Assume that the character "3" is obtained from the "XML document". Select which XSLT style sheet correctly performs the transformation. (Multiple answers possible. Select two.) A. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match= " / " > <xsl:apply-templates select= " //data[x='1'][y='2'] " /> </xsl:template> </xsl:stylesheet> B. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match= " / " > <xsl:apply-templates select= " //data[(attribute::x='1') and (text()='3')] " /> </xsl:template> </xsl:stylesheet> C. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match= " / " > <xsl:apply-templates select= " //data[self='3'] " /> </xsl:template> </xsl:stylesheet> D. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match= " / " > <xsl:apply-templates select= " //data[self::*='3'] " /> </xsl:template> </xsl:stylesheet> Answer: BD 9. What must you write in XSLT style sheet (1) to process the following "XML Document" and obtain the following "transform results"? Select the correct answer below. Note that "#" indicates a line feed, and "=*" indicates a tab. Assume that the XSLT processor can output transformation results as a document. A. Nothing needs to be written. B. <xml:space="preserve"/> C. <xsl:preserve-space elements="content"/> D. <xsl:strip-space elements="doc body"/> Answer: D 10. Push the Exhibit Button to load the referenced "XML Document". Select which of the following correctly describes the output results of an XSLT transformation of the "XML Document" using the "XSLT Style Sheet". Note that the XSLT processor can output transformation results as a document. Line feeds and indents are not reflected. A. <record> <data>100</data> </record> B. <record xmlns="urn:xmlmaster:test"> <data>100</data> </record> C. <record xmlns="urn:xmlmaster:test"> <data xmlns= "" >100</data> </record> D. <record> <data>100</data> <data>70</data> </record> E. <record xmlns="urn:xmlmaster:test"> <data>100</data> <data>70</data> </record> F. <record xmlns="urn:xmlmaster:test"> <data xmlns= "" >100</data> <data xmlns= "" >70</data> </record> Answer: F 11. Push the Exhibit Button to load the referenced "testml.xsd". Assume that "testml.xsd" is defined. Without rewriting this XML Schema Document ("testml.xsd"), create a new, separate XML Schema Document to partially change the schema definition to write a cellPhone element as a child element of the person element. As a result, the following "XML Document" will be valid against the new schema. Which of the following correctly describes the new XML Schema Document? Assume the XML parser correctly processes the XML schema schemaLocation attribute. A. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:import schemaLocation="testml.xsd" /> <xs:complexType name="personType"> <xs:sequence> <xs:element ref= " name " /> <xs:element ref= " phone " /> <xs:element ref= " cellPhone " /> </xs:sequence> </xs:complexType> <xs:element name= " cellPhone " type= " xs:string " /> </xs:schema> B. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:include schemaLocation="testml.xsd" /> <xs:complexType name="newPersonType" substitutionGroup="personType"> <xs:sequence> <xs:element ref= " name " /> <xs:element ref= " phone " /> <xs:element ref= " cellPhone " /> </xs:sequence> </xs:complexType> <xs:element name= " cellPhone " type= " xs:string " /> </xs:schema> C. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:redefine schemaLocation= " testml.xsd " > <xs:complexType name= " personType " > <xs:complexContent> <xs:extension base= " personType " > <xs:sequence> <xs:element ref= " cellPhone " /> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> </xs:redefine> <xs:element name= " cellPhone " type= " xs:string " /> </xs:schema> D. It is not possible to implement a function of the type proposed. Answer: C 12. Push the Exhibit Button to load the referenced "XML Document". Create an XML Schema Document for "XML Document". The definitions of this XML Schema Document require that the value of the level attribute of the record element must be singularly unique within the XML document, and further, that the level attribute of the scenario element must reference the value of the level attribute of the record element. Select which of the following correctly describes what should be written in " XML Schema " document (1). A. <xs:element name="TestML" type="testmlType"> < xs:unique name= " LEVEL " > <xs:selector xpath= " record " /> <xs:field xpath= " record/@level " /> </ xs:unique > < xs:ref name= " levelRef " refer= " LEVEL " > <xs:selector xpath= " scenario " /> <xs:field xpath= " scenario/@level " /> </ xs:ref > </xs:element> B. <xs:element name="TestML" type="testmlType"> < xs:unique name= " LEVEL " > <xs:selector xpath= " record " /> <xs:field xpath= " @level " /> </ xs:unique > < xs:ref name= " levelRef " refer= " LEVEL " > <xs:selector xpath= " scenario " /> <xs:field xpath= " @level " /> </ xs:ref > </xs:element> C. <xs:element name="TestML" type="testmlType"> < xs:key name= " LEVEL " > <xs:selector xpath= " record " /> <xs:field xpath= " record/@level " /> </ xs:key > < xs:keyref name= " levelRef " refer= " LEVEL " > <xs:selector xpath= " scenario " /> <xs:field xpath= " scenario/@level " /> </ xs:keyref > </xs:element> D. <xs:element name="TestML" type="testmlType"> < xs:key name= " LEVEL " > <xs:selector xpath= " record " /> <xs:field xpath= " @level " /> </ xs:key > < xs:keyref name= " levelRef " refer= " LEVEL " > <xs:selector xpath= " scenario " /> <xs:field xpath= " @level " /> </ xs:keyref > </xs:element> Answer: D 13. Push the Exhibit Button to load the referenced "XML Document". Choose the XML Schema Document that correctly defines the structure of "XML Document". A. <xs:schema xmlns:xs= " http://www.w3.org/2001/XMLSchema " targetNamespace= " urn:xmlmaster:testml " xmlns:tns= " urn:xmlmaster:testml " > <xs:element name= " TestML " type= " tns:testmlType " /> <xs:complexType name= " testmlType " > <xs:sequence> <xs:element ref= " tns:record " maxOccurs= " unbounded " /> </xs:sequence> </xs:complexType> <xs:element name= " record " type= " tns:recordType " /> <xs:complexType name= " recordType " > < xs:attribute name="level" type= " xs:int " /> < xs:attribute name="data" type= " xs:int " /> </xs:complexType> </xs:schema> B. <xs:schema xmlns:xs= " http://www.w3.org/2001/XMLSchema " targetNamespace= " urn:xmlmaster:testml " xmlns:tns= " urn:xmlmaster:testml " > <xs:element name= " TestML " type= " tns:testmlType " /> <xs:complexType name= " tns:testmlType " > <xs:sequence> <xs:element ref= " tns:record " maxOccurs= " unbounded " /> </xs:sequence> </xs:complexType> <xs:element name= " record " type= " tns:recordType " /> <xs:complexType name= " tns:recordType " > < xs:attribute ref="tns:level" /> < xs:attribute ref="tns:data" /> </xs:complexType> < xs:attribute name="tns:level" type= " xs:int " /> < xs:attribute name="tns:data" type= " xs:int " /> </xs:schema> C. <xs:schema xmlns:xs= " http://www.w3.org/2001/XMLSchema " targetNamespace= " urn:xmlmaster:testml " xmlns:tns= " urn:xmlmaster:testml " > <xs:element name= " TestML " type= " tns:testmlType " /> <xs:complexType name= " testmlType " > <xs:sequence> <xs:element ref= " tns:record " maxOccurs= " unbounded " /> </xs:sequence> </xs:complexType> <xs:element name= " record " type= " tns:recordType " /> <xs:complexType name= " recordType " > < xs:attribute ref="tns:level" /> < xs:attribute ref="tns:data" /> </xs:complexType> < xs:attribute name="level" type= " xs:int " /> < xs:attribute name="data" type= " xs:int " /> </xs:schema> D. <xs:schema xmlns:xs= " http://www.w3.org/2001/XMLSchema " targetNamespace= " urn:xmlmaster:testml " xmlns:tns= " urn:xmlmaster:testml " > <xs:element name= " TestML " > <xs:complexType> <xs:sequence> <xs:element name= " record " maxOccurs= " unbounded " > <xs:complexType> <xs:attribute name= " tns:level " type= " xs:int " /> <xs:attribute name= " tns:data " type= " xs:int " /> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> </xs:schema> Answer: C 14. Select which of the following correctly describes the results of performing a validation check on "XML Document". Assume that the XML parser correctly processes the XML schema noNamespaceSchemaLocation attribute and the schemaLocation attribute. A. Valid B. The coding for the XML Schema Document is not appropriate; therefore, an error is thrown (initial error) when processing the "testml.xsd" import element C. The coding for the XML Schema Document is not appropriate; therefore, an error is thrown (initial error) when processing the "testml.xsd" "<xs:element ref="rec:record" maxOccurs="unbounded" />" D. No processing error, but is not valid. Answer: A 15. Select which of the following DOM (Level 2) nodes does not hold a value (returns "null"). (Multiple answers possible. Select two.) A. Attr B. Comment C. Element D. Document Answer: CD 16. Select which of the following correctly describes the results of performing a validation check on "XML Document". Assume that the XML parser correctly processes the XML schema schemaLocation attribute. A. Valid B. The coding for the XML Schema Document is not appropriate; therefore, an error is thrown (initial error) when processing the "testml.xsd" include element C. The coding for the XML Schema Document is not appropriate; therefore, an error is thrown (initial error) when processing the "testml.xsd" "<xs:element ref="tns:record" maxOccurs="unbounded" />" D. No processing error, but is not valid. Answer: A 17. Which of the following correctly describes the content of SOAP specification 1.1? (Multiple answers possible. Select two.) A. The specification defines the SOAP message structure and the method for mapping application-defined datatypes to XML B. The specification includes a definition of XML included in the SOAP Body element C. The specification designates the transmission method for sending SOAP messages using SMTP protocol D. The specification designates encryption procedures for SOAP messages Answer: AB 18. Which of the following fault codes is defined in SOAP specification 1.1? (Multiple answers possible. Select two.) A. MustUnderstand B. RequiredElement C. Server D. SyntaxError Answer: AC 19. Which of the following correctly describes the SOAP (SOAP 1.1) message sent from the client side to the service side? A. In order to acquire the symbol element data type, the service side must access http://www.xmlmaster.org/exam, and acquire the schema document coded in XML schema B. Because the encoding method (SOAP Encoding) defined under SOAP 1.1 is not used, the xsi:type attribute of the symbol element must be specified to designate the data type C. In order to acquire the symbol element data type, the client side and the service side must already share the WSDL definition D. The symbol element will be processed according to the service implement Answer: D 20. Which of the following is a correct SOAP (SOAP 1.1) message according to the WSDL (WSDL 1.1) definition? A. <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ProcessDocument xmlns="http://xmlmaster.org/example/xsd"> <Document> <Title xmlns="">Daily report</Title> <Content xmlns="">Today's news</Content> </Document> </ProcessDocument> </soap:Body> </soap:Envelope> B. <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <body xmlns="http://xmlmaster.org/example/xsd"> <Document> <Title xmlns="">Daily report</Title> <Content xmlns="">Today's news</Content> </Document> </body> </soap:Body> </soap:Envelope> C. <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <Document xmlns="http://xmlmaster.org/example/xsd"> <Title xmlns="">Daily report</Title> <Content xmlns="">Today's news</Content> </Document> </soap:Body> </soap:Envelope> D. <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <ProcessDocument xmlns="http://xmlmaster.org/example/xsd"> <Title xmlns="">Daily report</Title> <Content xmlns="">Today's news</Content> </ProcessDocument> </soap:Body> </soap:Envelope> Answer: C 21. Which of the following correctly describes the results of normalizing the following XML Document rec element by Exclusive XML Canonicalization? A. <b:rec xmlns:a="urn:xmlmaster:a" xmlns:b="urn:xmlmaster:b"> <b:field></b:field> </b:rec> B. <b:rec xmlns:b="urn:xmlmaster:b"> <b:field></b:field> </b:rec> C. <b:rec xmlns:a="urn:xmlmaster:a" xmlns:b="urn:xmlmaster:b"><b:field></b:field></b:rec> D. <b:rec xmlns:b="urn:xmlmaster:b"><b:field></b:field></b:rec> Answer: B 22. Which of the following is clearly an unnecessary step in procedures to create digital signature via XML-Signature? A. Prepare a key for signing B. Normalize the subject of the signature (normalization via Canonical XML, etc.) C. Remove namespaces in the subject of the signature D. Calculate a digest of the subject of the signature Answer: C 23. Which of the following does not correctly describe the merits of adopting a standard language such as XBRL or NewsML when transmitting XML data between two different companies? A. It is easy to achieve agreement as to the XML format to be used for transmission between the developers of the linked system B. If there is an application package product available, a cost comparison can be made between purchasing the package or developing the application in-house to make the most cost-effective selection C. Once a system is developed, it is easy to use to link to a different system of another company D. Since the language design has already placed a premium on performance, there will be no need to consider performance tuning during system development Answer: D 24. Select which of the following correctly describes the message reception processing circumstances when a well-formed XML document has been sent/ received. [Transmission] Character encoding for the transmitted XML document is "UTF-16", and no XML declaration has been specified. The media type for transmission is set as "text/xml" without charset parameter. [Receipt] Implementation follows RFC3023 and XML 1.0. The receiving system first identifies the media type, and then processes the XML document. At the point that character encoding has been determined, an XML declaration (including encoding declaration) is appended automatically to the head of the received XML document. A. The media type identification appends <?xml version="1.0" encoding="us-ascii"?>, at which point the XML processor throws an error when processing the XML document B. The media type identification appends <?xml version="1.0" encoding="UTF-8"?>, at which point the XML processor throws an error when processing the XML document C. Character encoding is determined by the system locale. Since the XML declaration is appended accordingly, in certain cases the XML processor will throw an error when processing the XML document D. The character encoding is identified from the XML Document binary. An XML declaration (<?xml version="1.0" encoding="UTF-16"?>) is appended accordingly Answer: A 25. Select which of the following correctly describes the DOM (Level 2) tree after parsing the "XML Document." Note that "&" is a character reference described as "&". [XML Document] <data><contents&</data> A. The data element (Element) value (nodeValue) is "<contents&" B. The data element (Element) child node is a text node (Text) having a value (nodeValue) of "<contents&" C. There are three child nodes for the data element (Element) D. There is no method to know that "&" was a character reference once the DOM tree has been built Answer: D 26. Which of the following correctly describes a data binding tool that maps XML data and programming objects? A. A data binding tool implements W3C XML data binding B. There are several data binding tools, but none of these tools can handle XML namespaces C. There are several data binding tools, with different tools suited for different schema languages D. There are several data binding tools, but as long as the same programming language is used, all method names and arguments lists for XML operations are the same for every tool Answer: C 27. Push the Exhibit Button to load the referenced "XML Document" and "XSLT Style Sheet". Select which of the following correctly describes the output results of an XSLT transformation of the "XML Document" using the "XSLT Style Sheet". Note that the XSLT processor can output transformation results as a document. Line feeds and indents are not reflected. A. <output> <report/> </output> B. <output> <report> <date>2005-01-01</date> </report> </output> C. <output> <report> <date>2005-01-01</date> <value>102</value> <value>89</value> <value>70</value> </report> </output> D. <output> <report> <!--This is a comment--> <date>2005-01-01</date> <place>South Street, East Town</place> <value>102</value> <value>89</value> <value>70</value> </report> </output> E. <output> <report> <date>2005-01-01</date> <data><value>102</value></data> <data><value>89</value></data> <data><value>70</value></data> </report> </output> F. <output> <report> <!--This is a comment--> <date>2005-01-01</date> <place>South Street, East Town</place> <data><value>102</value></data> <data><value>89</value></data> <data><value>70</value></data> </report> </output> Answer: E 28. Select which of the following correctly describes the output results of an XSLT transformation of the following "XML Document" using the "XSLT Style Sheet". Note that the XSLT processor can output transformation results as a document. A. 0 B. 1 C. 01 D. 12 E. 012 F. 123 Answer: D 29. Push the Exhibit Button to load the referenced "XML Document". When processing the "XML Document" according to the method shown by "SAX Processing," which of the following correctly describes the output results (println method output)? Assume that the processed XML Document has no indents (ignorable white space such as line feeds, tabs, etc.). Although the expected processing result is choice "A", processing may not occur as expected. [SAX Processing] Use the following "ContentHandlerImpl" class, and parse the XML Document using SAX. The SAX parser is namespace aware. Assume no execution errors. A. 2004-06-30 09:00:Gina Jones B. 2004-06-30 09:00: C. :Gina Jones D. Nothing is output. Answer: A 30. When processing the following "XML Document" according to the method shown by "SAX Processing," which of the following correctly describes the output results (println method output)? Settings are such that the SAX parser is namespace aware and performs a validation check against the "XML Schema" ("XML Schema" referenced when the Exhibit Button is pushed). Assume that the processed XML Document has no indents (ignorable white space such as line feeds, tabs, etc.). Use the following "ContentHandlerImpl" class, and parse the XML Document using SAX. Settings are such that the SAX parser is namespace aware and performs a validation check against the "XML Schema" ("XML Schema" referenced when the Exhibit Button is pushed). A. 2004-07-01T13:00:00+09:00 2004-07-01T15:00:00+09:00 No problems B. No problems end C. No problems continue D. No problems Answer: B |
|
|||||||||||||||||
| 廠商: Cisco, Oracle, IBM, SUN, HP, Citrix, CIW, VMWare CISCO: CCNA, CCNP MICROSOFT: MCSE2003, MCTS ORACLE: OCA JAVA: SCJP VMWare: VCP-310 |
| 如何購買 關於我們 FAQs |