Free I10-002 Exam Braindumps (page: 2)

Page 2 of 21

Push the Exhibit Button to load the referenced "XML Document 1" and "XML Document 2," and process XML using "DOM Processing."

  1. <root2 xmlns="urn:xmlmaster:EX2">
    <data xmlns= " urn:xmlmaster:EX1 " >string value</data> </root2>
  2. <root2 xmlns="urn:xmlmaster:EX2">
    <data>string value</data>
    </root2>
  3. <root2 xmlns="urn:xmlmaster:EX2">
    <data xmlns= " urn:xmlmaster:EX1 " />
    </root2>
  4. <root2 xmlns="urn:xmlmaster:EX2">
    <data/>
    </root2>

Answer(s): A



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>

  1. <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>
  2. <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>
  3. <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>
  4. <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(s): A



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>

  1. <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>
  2. <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>
  3. <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>
  4. <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(s): B



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.)

  1. <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>
  2. <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>
  3. <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>
  4. <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(s): B,D



Page 2 of 21



Post your Comments and Discuss XML Master I10-002 exam with other Community members:

Amber commented on December 27, 2024
Passed the exam today. It is going to be a great new year.
UNITED STATES
upvote

Microsoftee commented on December 27, 2024
Thank you so much. Nice material.
Anonymous
upvote

sandy commented on December 27, 2024
good content
Anonymous
upvote

anonymous a commented on December 27, 2024
helpful stuff
Anonymous
upvote

Ravi commented on December 27, 2024
So far so good
INDIA
upvote

Poo commented on December 27, 2024
Useful data
Anonymous
upvote

Cosy commented on December 26, 2024
I am loving it here
Anonymous
upvote

Tanuja Bhusal commented on December 26, 2024
Good Questions
Anonymous
upvote

anonymous commented on December 26, 2024
Just going through the questions for my understanding of Power Bi
UNITED STATES
upvote

laks commented on December 26, 2024
so far seems good
UNITED STATES
upvote

Mooni commented on December 26, 2024
It's really good
SAUDI ARABIA
upvote

Phoebe commented on December 26, 2024
Good questions
FRANCE
upvote

rz commented on December 26, 2024
It's very helpful for exam
TAIWAN PROVINCE OF CHINA
upvote

Nitesh Kumar Singh commented on December 26, 2024
Nice to attend
Anonymous
upvote

Pankaj Kumar commented on December 26, 2024
Its good to have all the relevant questions here.. Thanks for help!
UNITED STATES
upvote

ian commented on December 26, 2024
yes, is this still valid?
UNITED STATES
upvote

Onkar commented on December 26, 2024
Questions looks promising.
Anonymous
upvote

JcD commented on December 25, 2024
Great learning
Anonymous
upvote

Sam commented on December 25, 2024
Are these real questions? They seem too easy to be true
UNITED STATES
upvote

Netra commented on December 25, 2024
Very useful
UNITED STATES
upvote

Prg commented on December 25, 2024
good set of questions
Anonymous
upvote

n commented on December 25, 2024
Question are
Anonymous
upvote

Ni commented on December 25, 2024
useful questions
Anonymous
upvote

ry commented on December 24, 2024
very helpful
Anonymous
upvote

Jatin Gohil commented on December 24, 2024
Good contents. The exams questions are real
Anonymous
upvote

Anonymous commented on December 24, 2024
very useful
CHILE
upvote

Mohamedk commented on December 24, 2024
It's very nice
Anonymous
upvote

Amer commented on December 24, 2024
Thanks alot
EGYPT
upvote

shankar commented on December 24, 2024
good set of questions
CHINA
upvote

VARSHA commented on December 24, 2024
GOOD QUSTIOENS.. LIKED IT
Anonymous
upvote

Robin commented on December 24, 2024
nice course
Anonymous
upvote

Rama laksmana commented on December 23, 2024
Good question
UNITED STATES
upvote

Chandru commented on December 23, 2024
Nice questions
UNITED STATES
upvote

Amr commented on December 23, 2024
Good tutorial
Anonymous
upvote