Latest I10-001 Practice Tests with Actual Questions

Get Complete pool of questions with Premium PDF and Test Engine

Exam Code : I10-001
Exam Name : XML Master Basic V2
Vendor Name : "XML-Master"







I10-001 Dumps

I10-001 Braindumps I10-001 Real Questions I10-001 Practice Test

I10-001 Actual Questions


killexams.com


XML-Master


I10-001


XML Master Basic V2


https://killexams.com/pass4sure/exam-detail/I10-001


Question: 124

Select which of the following is correct with regard to using a multiple number of character encoding types in a single XML document that contains no external references.


  1. Attach encoding element attributes to the element.

  2. Attach encoding attributes for each element in the DTD. C. Use UTF-8 or UTF-16.

D. A multiple number of character encoding types cannot be used. W Courier Newlr Z




Answer: D



Question: 125

With respect to XML 1. 0, select which character encoding (encoding value for the XML declaration) that an XML processor absolutely must be able to process.


  1. Shift_JIS

  2. JIS

  3. EUC-JP

  4. UTF-8W Courier Newlr Z




Answer: D



Question: 126

Select which of the following is correct with respect to designating XML document character encoding output via XSLT.


  1. The output XML document character encoding is the same as the original XML document.

  2. The output XML document character encoding is the same as the XSLT stylesheet.

  3. Use xsl:output instructions to set the character encoding.

  4. The character encoding for the XML document of the transformation results cannot be designated. W Courier Newlr Z




Answer: C



Question: 127

Press the Exhibit button to view and transform "Transformation Source XML Document". Select the answer that correctly describes what belongs in (1) in the "XSLT Stylesheet" to derive "Post- Transformation XML

Document". [XSLT Stylesheet]

<xsl:stylesheet version="1. 0" xmlns:xsl="http://www. w3. org/1999/xsl/Transform">

<xsl:template match="/">

<product>

<xsl:apply-templates select="(1) "/>

</product>

</xsl:template>

<xsl:template match="name">

<xsl:value-of select=". "/>

</xsl:template>

</xsl:stylesheet>


  1. //name

  2. /name

  3. product/name

  4. /productW Courier Newlr Z




Answer: A, C



Question: 128

Select which of the following is an XSLT instruction to create a new node in a resulting XML document.


  1. xsl:attribute

  2. xsl:cdata

  3. xsl:element

  4. xsl:entityW Courier Newlr Z




Answer: A, C



Question: 129

Press the Exhibit button to view the external DTD subset "prod. dtd". Select which of the following correctly describes a valid XML document when the external DTD subset "prod. dtd" file is generated.


  1. <?xml version="1. 0"?>

    <!DOCTYPE product SYSTEM "prod. dtd">

    <product>

    <name/>

    <price/>

    </product>

  2. <?xml version="1. 0"?>

    <!DOCTYPE product SYSTEM "prod. dtd">

    <product>

    <name>

    <price/>

    </name>

    </product>

  3. <?xml version="1. 0"?>

    <!DOCTYPE product SYSTEM "prod. dtd">

    <product>

    <price/>

    <name/>

    </product>

  4. <?xml version="1. 0"?>

    <!DOCTYPE product SYSTEM "prod. dtd">

    <product>

    <name/>

    </product>

  5. <?xml version="1. 0"?>

<!DOCTYPE product SYSTEM "prod. dtd">

<product>

<price/>

</product>W Courier Newlr Z




Answer: A