XML Master I10-002 Exam (page: 3)
XML Master Professional Application Developer
Updated on: 31-Mar-2026

Viewing Page 3 of 17

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 cell Phone 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 Location attribute.
[XML.Documet]
<TestML>
<person>
<name>John Smith</name>
<phone>03-000-999</phone>
<cellPhone>00-1111-2222</cellPhone>
</person>
</TestML>

  1. <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>
  2. <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>
  3. <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>
  4. It is not possible to implement a function of the type proposed.

Answer(s): C



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

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



Push the Exhibit Button to load the referenced "XML Document". Choose the XML Schema Document that correctly defines the structure of "XML Document".

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



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 no Name space Schema Location attribute and the schema Location attribute.

  1. Valid
  2. The coding for the XML Schema Document is not appropriate; therefore, an error is thrown (initial error) when processing the "testml.xsd" import element
  3. 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" />"
  4. No processing error, but is not valid.

Answer(s): A



Select which of the following DOM (Level 2) nodes does not hold a value (returns "null"). (Multiple answers possible. Select two.)

  1. Attr
  2. Comment
  3. Element
  4. Document

Answer(s): C,D



Viewing Page 3 of 17



Share your comments for XML Master I10-002 exam with other users:

Muhammad Rawish Siddiqui 12/5/2023 12:38:00 PM

question # 142: data governance is not one of the deliverables in the document and content management context diagram.
SAUDI ARABIA


al 6/7/2023 10:25:00 AM

most answers not correct here
Anonymous


Bano 1/19/2024 2:29:00 AM

what % of questions do we get in the real exam?
UNITED STATES


Oliviajames 10/25/2023 5:31:00 AM

i just want to tell you. i took my microsoft az-104 exam and passed it. your program was awesome. i especially liked your detailed questions and answers and practice tests that made me well-prepared for the exam. thanks to this website!!!
UNITED STATES


Divya 8/27/2023 12:31:00 PM

all the best
UNITED STATES


KY 1/1/2024 11:01:00 PM

very usefull document
Anonymous


Arun 9/20/2023 4:52:00 PM

nice and helpful questions
INDIA


Joseph J 7/11/2023 2:53:00 PM

i found the questions helpful
UNITED STATES


Meg 10/12/2023 8:02:00 AM

q 105 . ans is d
INDIA


Navaneeth S 7/14/2023 7:57:00 AM

i have interest to get a sybase iq dba certification
UNITED STATES


Aish 10/11/2023 5:27:00 AM

want to pass exm.
INDIA


Anonymous 6/12/2023 7:23:00 AM

are the answers correct?
INDIA


Kris 7/7/2023 9:43:00 AM

good morning, could you please upload this exam again, i need it to test my knowledge in sd-wan with version 7.0.
Anonymous


Meghraj mali 10/7/2023 1:47:00 PM

very nice question
CANADA


Noel 11/1/2022 9:14:00 PM

i have learning disability and this exam dumps allowed me to focus on the actual questions and not worry about notes and the those other study materials.
SOUTH AFRICA


Jas 10/25/2023 6:01:00 PM

165 should be apt
UNITED STATES


Neetu 6/22/2023 8:41:00 AM

please upload the dumps, real need of them
Anonymous


Mark 10/24/2023 1:34:00 AM

any recent feeedback?
UNITED STATES


Gopinadh 8/9/2023 4:05:00 AM

question number 2 is indicating you are giving proper questions. observe and change properly.
Anonymous


Santhi 1/1/2024 8:23:00 AM

passed today.40% questions were new.litwere case study,lots of new questions on afd,ratelimit,tm,lb,app gatway.got 2 set series of questions which are not present here.questions on azure cyclecloud, no.of vnet/vms required for implimentation,blueprints assignment/management group etc
INDIA


Raviraj Magadum 1/12/2024 11:39:00 AM

practice test
INDIA


sivaramakrishnan 7/27/2023 8:12:00 AM

want the dumps for emc content management server programming(cmsp)
Anonymous


Aderonke 10/23/2023 1:52:00 PM

brilliant and helpful
UNITED KINGDOM


Az 9/16/2023 2:43:00 PM

q75. azure files is pass
SWITZERLAND


ketty 11/9/2023 8:10:00 AM

very helpful
Anonymous


Sonail 5/2/2022 1:36:00 PM

thank you for these questions. it helped a lot.
UNITED STATES


Shariq 7/28/2023 8:00:00 AM

how do i get the h12-724 dumps
Anonymous


adi 10/30/2023 11:51:00 PM

nice data dumps
Anonymous


EDITH NCUBE 7/25/2023 7:28:00 AM

answers are correct
SOUTH AFRICA


Raja 6/20/2023 4:38:00 AM

good explanation
UNITED STATES


BigMouthDog 1/22/2022 8:17:00 PM

hi team just want to know if there is any update version of the exam 350-401
AUSTRALIA


francesco 10/30/2023 11:08:00 AM

helpful on 2017 scrum guide
EUROPEAN UNION


Amitabha Roy 10/5/2023 3:16:00 AM

planning to attempt for the exam.
Anonymous


Prem Yadav 7/29/2023 6:20:00 AM

pleaseee upload
INDIA