Free XML Master I10-001 Practice Test & Real Exam Questions
Select which of the following correctly describes a namespace to which the "Application" element in the XML document below belongs.
<?xml version="1. 0"?>
<message xmlns:personal="urn:sample:personal"
xmlns:application="urn:sample:Application">
<application:data>
<Application Date="2005/09/30">Address_Change</Application>
<Change_Address>Bunkyo-ku_Tokyo_XXXX</Change_Address> <Applicant>Ichiro_Yamamoto</Applicant> <personal:Department_Name>Sales_Department</personal:Department_Name> <personal:Telephone_Number usage="Official">03-1111-1111</personal:Telephone_Number> </application:data>
</message>
<?xml version="1. 0"?>
<message xmlns:personal="urn:sample:personal"
xmlns:application="urn:sample:Application">
<application:data>
<Application Date="2005/09/30">Address_Change</Application>
<Change_Address>Bunkyo-ku_Tokyo_XXXX</Change_Address> <Applicant>Ichiro_Yamamoto</Applicant> <personal:Department_Name>Sales_Department</personal:Department_Name> <personal:Telephone_Number usage="Official">03-1111-1111</personal:Telephone_Number> </application:data>
</message>
Correct Answer: C
Vote an answer
Press the Exhibit button to view "XML Schema Document". Which of the following is a valid XML document with respect to "XML Schema Document".
Correct Answer: A,C,D
Vote an answer
When using an XML processor to read the XML document below, which answer correctly describes the value that entity reference "&name;" replaces? Assume that the XML processor can read "external. txt".
[external. txt]
<?xml version="1. 0" encoding="UTF-8"?>
<name>gloria</name>
[XML Documents]
<?xml version="1. 0" encoding="UTF-8"?>
<!DOCTYPE text [
<!ELEMENT text (#PCDATA|name)*>
<!ELEMENT name (#PCDATA)>
<!ENTITY name SYSTEM "external. txt">
]>
<text>My name is &name;</text>
[external. txt]
<?xml version="1. 0" encoding="UTF-8"?>
<name>gloria</name>
[XML Documents]
<?xml version="1. 0" encoding="UTF-8"?>
<!DOCTYPE text [
<!ELEMENT text (#PCDATA|name)*>
<!ELEMENT name (#PCDATA)>
<!ENTITY name SYSTEM "external. txt">
]>
<text>My name is &name;</text>
Correct Answer: B
Vote an answer
Select which statement correctly describes the XML document below.
[XML Documents]
<!DOCTYPE ElementA [
<!ELEMENT ElementA EMPTY>
<!ATTLIST ElementA Attribute (ABC|DEF|GHI) #IMPLIED>
]>
<ElementA Attribute ="
A
B
C"/>
[XML Documents]
<!DOCTYPE ElementA [
<!ELEMENT ElementA EMPTY>
<!ATTLIST ElementA Attribute (ABC|DEF|GHI) #IMPLIED>
]>
<ElementA Attribute ="
A
B
C"/>
Correct Answer: B
Vote an answer
Press the Exhibit button to view the XML document "a. xml", and apply XSLT stylesheet "b. xsl" to "a. xml", and output "10075" as the transformation result. Select which of the following correctly belongs in (1) of the "b. xsl".
Correct Answer: B
Vote an answer
Press the Exhibit button to view the XML Schema document defining "Structure". Select which of the following is correct with respect to "Structure" defined by the XML Schema document.
Correct Answer: D
Vote an answer
Select which of the following is not a well-formed XML document.
Correct Answer: B
Vote an answer
With respect to the XML 1. 0 recommended specifications, select which of the following is a way to code the symbol "<" without being interpreted as a "tag opening".
Correct Answer: A,B
Vote an answer
