XML I10-002 Exam - Topic 3 Question 105 Discussion
Push the Exhibit Button to load the referenced "XML Document". When processing the "XML Document" according to the method shown by "DOM Processing," 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.Although the expected processing result is choice "B", processing may not occur as expected.[DOM Processing]Process XML using the following method.Document output = createXML( doc, impl );The variable doc here references the Document instance of the loaded XML Document.The variable impl here references the DOMImplementation instance.The DOM parser is namespace aware.Assume no execution errors.}return output;}
A) <VisitList xmlns='urn:xmlmaster:NEWLIST'>
<Visit>
<Worker xmlns='urn:xmlmaster:WORKER' Name='Jeff Workman'/>
<Activity xmlns='urn:xmlmaster:VISIT' Code='0001'>
<DateTime>2004-07-01 09:00</DateTime>
<Job Procedure='Install freezer' Time='2'/>
<Status>COMPLETED</Status>
</Activity>
</Visit>
</VisitList>
B) <VisitList xmlns='urn:xmlmaster:NEWLIST'>
<Visit>
<Date xmlns='urn:xmlmaster:LIST'>2004-07-01</Date>
<Worker xmlns='urn:xmlmaster:WORKER' Name='Jeff Workman'/>
<Activity xmlns='urn:xmlmaster:VISIT' Code='0001'>
<DateTime>2004-07-01 09:00</DateTime>
<Job Procedure='Install freezer' Time='2'/>
<Status>COMPLETED</Status>
</Activity>
</Visit>
</VisitList>
C) <VisitList xmlns='urn:xmlmaster:NEWLIST'>
<Visit>
<Worker xmlns='urn:xmlmaster:WORKER' Name='Jeff Workman'/>
<Activity xmlns='urn:xmlmaster:VISIT' Code='0001'>
<DateTime>2004-07-01 09:00</DateTime>
<Job Procedure='Install freezer' Time='2'/>
<Status>COMPLETED</Status>
</Activity>
<Activity xmlns='urn:xmlmaster:VISIT' Code='0002'>
<DateTime>2004-07-01 13:00</DateTime>
<Job Procedure='Install air conditioner' Time='2'/>
<Status>WAITING</Status>
</Activity>
</Visit>
</VisitList>
D) <VisitList xmlns='urn:xmlmaster:NEWLIST'>
<Visit>
<Date xmlns='urn:xmlmaster:LIST'>2004-07-01</Date>
<Worker xmlns='urn:xmlmaster:WORKER' Name='Jeff Workman'/>
<Activity xmlns='urn:xmlmaster:VISIT' Code='0001'>
<DateTime>2004-07-01 09:00</DateTime>
<Job Procedure='Install freezer' Time='2'/>
<Status>COMPLETED</Status>
</Activity>
<Activity xmlns='urn:xmlmaster:VISIT' Code='0002'>
<DateTime>2004-07-01 13:00</DateTime>
<Job Procedure='Install air conditioner' Time='2'/>
<Status>WAITING</Status>
</Activity>
<Visit>
</VisitList>
Doug
28 days ago