¥ 295.00 000-142 考试学习资料

Test142.XML 1.1 and Related Technologies

  • 科目编号 : 000-142
  • 考试名称 : Test142.XML 1.1 and Related Technologies
  • 学习资料数目 : *** Q&As
  • 更新时间: 2011-10-24
  • 价格: ¥ 510.00 ¥ 295.00

免费下载 000-142 认证考试 Demo

000-142 考试是 IBM 公司的 Test142.XML 1.1 and Related Technologies 认证考试官方代号,Examsoon 的 000-142 权威考试学习资料软件包含IBM 认证主要知识点,Examsoon 保证第一次参加 000-142 考试的考生即可顺利通过,否则承诺免费更新!
 
 
Exam : IBM 000-142
Title : Test142.XML 1.1 and Related Technologies


1. A developer wishes to make an XSLT template more robust by checking a parameter passed to it for errors and boundary conditions. The template accepts a parameter of type number. What condition will NOT have to be checked?
A. number greater than allowed range
B. value of 0
C. type of the parameter value
D. Integer numbers
Answer: C

2. Consider the following XML document:
<?xml version="1.0" encoding="UTF-8"?>
<Books>
<Book ID="001">
<Title>Finding New World</Title>
<Author>Jone Smith</Author>
</Book>
<Book ID="080">
<Title>How to Programming</Title>
<Author>Tom Alston</Author>
</Book>
</Books>
An XML developer wants to generate a HTML document that lists the ID, title and author of a book in a HTML table. Which of the following stylesheets can achieve the desired result?
A. <?xml version="1.0" encoding="ISO-8859-1" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="Books">
<html>
<body>
<table width="100%" border="1">
<xsl:for-each select="/">
<tr>
<td><xsl:value-of select="@ID"/></td>
<td><xsl:value-of select="Title" /></td>
<td><xsl:value-of select="Author" /></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
B. <?xml version="1.0" encoding="ISO-8859-1" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<table width="100%" border="1">
<xsl:for-each select="Books/Book">
<tr>
<td><xsl:value-of select="@ID"/></td>
<td><xsl:value-of select="Title" /></td>
<td><xsl:value-of select="Author" /></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
C. <?xml version="1.0" encoding="ISO-8859-1" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<table width="100%" border="1">
<xsl:for-each select="Books/Book">
<tr>
<td><xsl:value-of select="ID"/></td>
<td><xsl:value-of select="." /></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
D. <?xml version="1.0" encoding="ISO-8859-1" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="Books">
<html>
<body>
<table width="100%" border="1">
<xsl:for-each select="Book">
<tr>
<td><xsl:value-of select="ID"/></td>
<td><xsl:value-of select="Title" /></td>
<td><xsl:value-of select="Author" /></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Answer: B

3. Calculating sub-totals from an XML document using XSL transformation requires special considerations. Which of the following options is the best solution to solve this problem?
A. Create a fragment variable containing the values to total, and then use the node-set() XSLT extension and the XPath "sum()" function to calculate the value.
B. Create a special XSLT variable that contains the results of an XPath query that performs a "sum()" of the values to be totaled.
C. Use XSLT recursion to define a variable value that calculates the "value-of" the elements to be sub-totaled.
D. Use XSLTC to precompile a custom Java translet that will extract the values to be totaled and returns the sum of those values. This return value is then used in an XSL variable for output.
Answer: A

4. Analyze the following XML and DTD fragments that implement ID, IDREF and IDREFS used to link manager and subordinate relationships. Where is the error in the implementation of this logic?
employees.dtd:
<!ATTLIST employee empid ID #REQUIRED>
<!ATTLIST employee mgrid ID #IMPLIED>
<!ATTLIST employee mgr IDREF #IMPLIED>
<!ATTLIST employee subs IDREFS #IMPLIED>
employees.xml:
<employees>
<employee empid="e1" mgrid="m1" subs="e2"><name>Bob Smith</name></employee>
<employee empid="e2" mgrid="m2" mgr="m1" subs="e3 e4"><name>Carol Jones</name></employee>
<employee empid="e3" mgr="m2"><name>Keith Martin</name></employee>
<employee empid="e4" mgr="m2"><name>Monica Williams</name></employee>
</employees>
A. The subs IDREFS is formatted improperly for the second employee record.
B. The mgrid must be defined as "#REQUIRED" in the DTD.
C. The empid and mgrid attributes conflict as an element may only have a single ID attribute.
D. First two records are invalid as each employee record may have either empid or mgrid attribute, but not both.
Answer: C

5. XML data is stored and retrieved within a relational database for a data-centric application by means of mapping XML schema elements to database tables. There are concerns that the queries and updates to this database are slow due to the number of joins required in the SQL. What is the best option for improving the storage and retrieval of this XML data?
A. Transform XML documents into canonical form before persisting.
B. Modify the current XML schema by converting elements to attributes where possible and re-map to tables in order to reduce the number of tables and therefore the number of joins required.
C. Store the XML data as CLOBs without decomposing them into relational tables and provide an 'id' based lookup.
D. Modify the current XML schema by merging all of the XML documents into a main XML document and query using XPath.
Answer: BD

下载 000-142 PDF 认证考试学习资料

Download 000-142 Exam Testing Engine

 

选择 Examsoon 000-142 学习资料

000-142 考试是 IBM 公司的 Test142.XML 1.1 and Related Technologies 认证考试官方代号,Examsoon 的 000-142 权威考试学习资料覆盖IBM 认证的知识点,Examsoon保证第一次参加 000-142考试的考生即可顺利通过,否则承诺免费更新!

Test142.XML 1.1 and Related Technologies 认证作为全球IT领域专家 IBM 热门认证之一,是许多大中IT企业选择人才标准的必备条件。 如果你正在准备 000-142 考试,为 IBM Test142.XML 1.1 and Related Technologies认证做最后冲刺,又苦于没有绝对权威的考试模拟, Examsoon 希望能助你成功。

1、Examsoon考试大师000-142学习资料有极高的知识点覆盖率,只要您使用本站的考试学习资料参加000-142 考试,您就能一次轻松通过考试;

2、售后服务第一!我们相信要想在当今时代取得成功,必须为广大用户提供全套的周到细致的全程优质售后服务,只有客户满意了,我们才能发展。客户至上是我们Examsoon考试大师的一贯宗旨;

3、Examsoon实行“一次不过免费升级”承诺。如果您购买我们000-142的考试,只要不是首次通过,凭盖有PROMETRIC或VUE考试中心钢印的考试成绩单,我们将免费更新,绝对保证您的利益不受损失;

4、本站000-142学习资料根据000-142考试知识点的变化动态更新,000-142学习资料可得到30天的免费更新。

5、软件版本000-142 考试学习资料
优点:具有学习模式,测试模式,线上自动升级
缺点:仅限固定电脑使用,不可打印为文本,只能PC阅读

6、PDF 格式000-142考试学习资料(部分最新更新科目已不提供PDF)
优点:不需下载安装软件,方便用户打印和携带,但也带来了可随意制的弊端,因此我们提醒用户不得随意公开或出售本站的000-142学习资料,一经发现立即取消其升级资格。
缺点:不具备测试模式,通过查看 Examsoon.cn网站及查收我们的更新E-MAIL获取更新信息。

Examsoon 的优势

1.Examsoon 模拟测试题具有最高的专业技术含量,只供具有相关专业知识的专家和学者学习和研究之用。
2.该学习资料已获得专业人员测试,我们深信IT业的专业人员和经理人有能力保证被授权产品的质量。
3.如果你使用 Examsoon 模拟测试,我们将保证你的第一次参加考试即取得成功,否则,我们将免费更新!
4.提供每种产品免费测试。在您决定购买之前,请检测链接,可能存在的问题及试题质量和适用性.