I10-003 Dumps

I10-003 Braindumps I10-003 Real Questions I10-003 Practice Test

I10-003 Actual Questions


killexams.com


XML-Master


I10-003


XML Master Professional Database Administrator


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

QUESTION: 34

See separate window.


Assume you wish to execute a query on [example xml] (separate window) to obtain a record element that includes a data element for which the condition attribute value is "good," and for which the element value is 100 or less. Select the correct result of executing the [XQuery] (separate window). The expected result would be "C;" however, the query may not be processed as expected.


  1. <result/>

  2. <result>

    <record date="2007-05-15">

    <data condition="bad">50</data>

    <data condition="bad">80</data>

    <data condition="good">250</data>

    </record>

    </result>

  3. <result>

    <recorddate="2007-05-16">

    <data condition="bad">60</data>

    <data condition="good">90</data>

    <datacondition="good">150</data>

    </record>

    </result>

  4. <result>

<recorddate="2007-05-15">

<data condition="bad">50</data>

<data condition="bad">80</data>

<datacondition="good">250</data>

</record>

<recorddate="2007-05-16">

<data condition="bad">60</data>

<data condition="good">90</data>

<data condition="good"> 150</data>

</record>

</result>


Answer: D


QUESTION: 35

See separate window.

[PRODUCTS xml] (separate window) and [STOCKLIST.xml] (separate window) are output in XML format from RDB (relational database) data. Assume that you wish to use

an XOuery processor to get [Output Result] (separate window) from this XML data. Which of the following is an XOuery that cannot retrieve [Output Result]?



  1. Option A

  2. Option B

  3. Option C

  4. Option D


    Answer: D


    QUESTION: 36

    Select the correct result of executing the [XOuery] on [example xml] referenced in a separate window.


    1. <result/>

    2. <result>

      <record/>

      <record/>

      </result>

    3. <result>

      <record>

      <name/>

      </record>

      <record>

      <name/>

      </record>

      </result>

    4. <result>

<record>

<name>John Smith</name>

</record>

<record>

<name>Harold Jones</name>

</record>

</result>


Answer: A


QUESTION: 37

Select the correct result of executing the following [XQuery] on [example xml] referenced in a separate window.



[XQuery]

<result>{

for $record in fn:doc("example.xml")/example/record return

<record>{ fn:data($record/data) }</record>

}</result>


  1. <result>

    <record>50</record>

    <record>60</record>

    </result>

  2. <result>

    <record>5080250</record>

    <record>6090150</record>

    </result>

  3. <result>

    <record>50 80 250</record>

    <record>60 90 150</record>

    </result>

  4. An error occurs


Answer: D


QUESTION: 38

See separate window.


A certain Web application displays user information according to user input via Web browser. The XML data managing user information is as shown in [example.xml] (separate window). The following [XQuery] is executed when the Web application retrieves user information from [example xml].

[XQuery]

<result>{

fn:doc("example.xml")//data[userid = "(1)"][password = "(2)"]

}</result>

At this time, the Web application completes the [XQuery] by replacing (1) and (2) with the user input character string, and executes the query. No character escapes (e.g. convert "<" to "&lt;") are performed for character string input by the user. Select two of the following that produces the query execution result in [Execution Result] (separate window) when the character string is as shown in each answer choice.


A. (1) "or""="

(2) OK

B. (1) "or""="

(2) "or""="

  1. (1) idorfn:true()

    (2) OK

  2. (1) idorfn.true()

    (2) idorfn:true()

  3. (1) "orfn:true()orany="

    (2) OK

  4. (1)"orfn:true()orany="

(2)"orfn:true()orany="


Answer: B, F


QUESTION: 39

A certain store engages in Internet commerce, managing customer information via XMLDB. Customers register as a user through a webpage, and are allowed to view their own information so they can edit their information themselves through a webpage interface. The store's Web application saves the customer information in an XMLDB, and retrieves data from the XMLDB as necessary.


The XML data including customer information is as shown in [CUSTOMER.xml] referenced in a separate window.


The XMLDB account when the Web application connects to the XMLDB is WEBAPP.

A person at the store is in charge of processing payments (access to all registered customer information), and this person's XMLDB account is COUNTER. A person at the store is in charge of product shipments (access to all registered customer information except for payment information ("payment element")), and this person's XMLDB account is SHIPPER. Do not consider XMLDB accounts other than those noted above. Each account authorization in the XMLDB is presently configured as follows: The WEBAPP account has permission to update and view [CUSTOMER xml] Other accounts have permission to view [CUSTOMER.xml] Which is the most appropriate method in this situation regarding XMLDB account authorizations'? Assume that this XMLDB has a view creation function (function to show only certain XML data in response to a certain query)


  1. When saving data into the XMLDB,all user element content should be encrypted, and all XMLDB accounts should be given permission for decryption

  2. When saving data into the XMLDB, all payment element content should be encrypted, and only the COUNTER account should be given permission for decryption

  3. You should create a view (PAYMENT_VIEW) to show only payment element information, providing the COUNTER account with permission to view PAYMENT_VIEW

  4. You should create a view (SHIP_V1EW) to show information other than payment element information, providing the SHIPPER account with permission to view SHIP_V1EW, and prohibiting the SHIPPER account from viewing [CUSTOMER.xml]


Answer: D