Loading ...
Global Do...
News & Politics
0
0
Try Now
Log In
Pricing
Examsoon.com The World Renowned IT Certification Material Provider Exam : IBM 000-141 Title : Test 141,xml and related technologies Version : Demo Examsoon.com The World Renowned IT Certification Material Provider Important Note, Please Read Carefully Other examsoon products All examsoon IT Exam Products Our products of Offline Testing Engine Use the offline Testing engine product to practice the questions in an exam environment. Build a foundation of knowledge which will be useful also after passing the exam. examsoon Testing Engine Guarantee Examsoon provides the most competitive quality of all exams for the customers, we guarantee your success at the first attempt with only our Certification Question&Answers, if you do not pass the exam at the first time, we will not only arrange FULL REFUND for you, but also provide you another exam of your claim, ABSOLUTELY FREE!. Features 1. Comprehensive questions with complete details 2. Instant Downloadable in PDF form. 3. Verified Answers Researched by Industry Experts 4. Questions accompanied by exhibits 5. Drag and Drop questions as experienced in the Actual Exams. 6. These questions and answers are backed by our GUARANTEE. 7. Questions updated on regular basis. 8. Like actual certification exams our product is in multiplechoice questions (MCQs). ExamSoon.com The World Renowned IT Certification Material Provider Help you pass any IT Exams 1. Refer to the exhibit to answer the question. Buyer entities of the marketplace can search and discover sellers and interact with them. The discovery and interaction processes are very dynamic in nature. Which of the following can MOST logically be part of the application's architecture? A. Validation of XML data B. XSL matching for the search and discovery C. XML Query for the search and discovery D. UDDI for the search and discovery E. SOAP for communication between various entities Answer: ADE 2. An application needs to be able to modify the XML document that it is processing, without creating a new instance of the document. Which is the BEST technology to use? A. XSLT B. SAX C. DOM D. DTD E. Infoset Answer: C ExamSoon.com The World Renowned IT Certification Material Provider Help you pass any IT Exams 3. A group of companies that currently processes purchase orders (POs) using XML has set up a B2B trading community in order to exchange the POs. Which of the following XML technologies would provide the MOST benefits? A. Use published DTDs to standardize the PO format. B. Use XML Query to retrieve POs from another company's database. C. Use XML Infoset to standardize field names between companies. D. Use XSLT to transform POs to/from internal PO formats. Answer: AD 4. Which of the following MUST be present in every SOAP request? A. SOAP Envelope, SOAP Header, SOAP Body B. SOAP Header, SOAP Body C. SOAP Envelope, SOAP Body D. SOAP Envelope, SOAP Header Answer: C 5. When is it BEST to use validation in an XML application? A. The application is being developed but not during production, when performance is more important B. The source of the XML data is untrusted C. Validating stylesheets are used D. High performance is an important architectural constraint Answer: B 6. Refer to the exhibit to answer the question. Which of the following is MOST likely to be required in the design? ExamSoon.com The World Renowned IT Certification Material Provider Help you pass any IT Exams A. XML from the bank must be validated and transformed into a format expected by the legacy system. B. XML from the legacy system must be transformed into a format expected by the bank's application. C. The DTD for financial reports must be consistent with element names used by the bank. D. The DTD for EFT transactions must be consistent with element names used by the browser. Answer: A 7. Refer to the exhibit to answer the question. It has been decided that rather than writing an XML Schema for the project, a DTD will be used. Which of the following are problems that an XML developer may run into when trying to implement this system? ExamSoon.com The World Renowned IT Certification Material Provider Help you pass any IT Exams A. Additional effort will be required to process date elements as required by banking officials. B. A unique id attribute will need to be created in order to identify each and every seller/buyer. C. The use of namespaces will be kept to a minimum. D. Enumerations values to ensure buyer and sellers will use the same currency as payments and accepting payments. Answer: AC 8. XML is going to be used in a B2B application to exchange human-resources data between multiple organizations. Each organization keeps its data in different forms, and produces different reports. Which of the following issues would present the greatest challenges for the XML project? A. Each corporation has its own non-XML record structure for this data. B. Each corporation wants to display the records in a different layout in its intranet applications. C. Some corporations will be sending a lot more data than others. D. The corporations are not using the same operating systems or middleware platforms. Answer: A 9. Which of the following statements regarding XPath is TRUE? A. XPath is new enough that the W3C has not yet adopted it as a "recommendation". B. Using XPath, a developer can address portions of a DTD in a forward or backward direction. C. XPath's functionality is extended by XPointer. ExamSoon.com The World Renowned IT Certification Material Provider Help you pass any IT Exams D. XPath is implemented with an object-based language. E. XPath uses XSLT, XSL FO, and other emerging technologies. Answer: C 10. Refer to the exhibit to answer the question. The goals of the design are to produce a stable and efficient e-commerce site. Which of the following technologies would MOST LIKELY improve the design or performance of the XML-based e-commerce application? A. XML Query B. XML Schema C. XSL Format Objects D. SAX E. XSLT Answer: BDE 11. An XML development team is faced with the task of repurposing an XML data stream to target both HTML web pages and hand-held cellular phones. What consideration is MOST likely to influence the team's design? A. The amount and types of formatting supported by the cellular device. B. The font families available on target web browsers. ExamSoon.com The World Renowned IT Certification Material Provider Help you pass any IT Exams C. The current CSS formatting model. D. The ability to properly transform XML objects into HTML objects. Answer: A 12. Which of the following statements reflects the BEST approach to rendering XML in a diverse range of clients? A. Format the XML during the XSL Transformation phase on the server using Format Objects based on xsl:template rules. B. Format the XML during the XSL Transformation phase on the server using xsl:output in conjunction with an xsl:choose and various xsl:when statements. C. Format the XML DOM in the middle tier XML application and deliver the objects to the requesting client. D. Use a combination of XSL Transformation processing and application processing to provide the necessary formatting to render the XML for specific uses. Answer: D 13. Which of the following XSL FO elements represent block level elements? A. fo:block B. fo:flow C. fo:table D. fo:table-and-caption E. fo:page-sequence Answer: ACD 14. Consider the following scenario: A company needs to display employee contact information in its intranet. The information is available in XML Format from an XML-aware employee database. It is required that the top of document should contain an index of employee names, so that clicking on an employee name will display the employee's complete contact information (including the employee's name). Which of the following is the BEST approach to meet this requirement? A. Create a master stylesheet that includes two stylesheets, one to generate the index, and another to ExamSoon.com The World Renowned IT Certification Material Provider Help you pass any IT Exams generate the complete information. B. Create a stylesheet with two templates in different modes, and use them in the mode attribute of <xsl:apply-templates>. C. Create a stylesheet with one template, and selectively use <xsl:copy> with <fo:index> to generate the index information. D. Create a stylesheet with one template, and use <xsl:indexinfo> to generate the index information. Answer: B 15. How should a developer write an XSL stylesheet that generates the XML prolog and DTD declaration as follows? <?xml version="1.0" ?> <!DOCTYPE doc SYSTEM "http://www.ibm.com/test.dtd"> ... A. By writing a template to match the root element of the source XML document <xsl:template match="/"> <?xml version="1.0" ?> <!DOCTYPE doc SYSTEM "http://www.ibm.com/test.dtd"> ... </xsl:template> B. By using <xsl:output method="xml" doctype-system="http://www.ibm.com/test.dtd" /> as a child of the root element of the XSL stylesheet. C. By using <xsl:stylesheet method="xml" doctype-system="http://www.ibm.com/test.dtd" /> as the root element of the XSL stylesheet. D. The XSL stylesheet automatically copies the prolog and the DTD declaration from the source XML. Answer: B 16. CSS and XSL can be BEST used together to: A. develop advanced transformations between XML DTDs. B. extend the capabilities of the HTML formatting model with CSS constructs. C. transform XML data on the server into HTML documents that link with CSS style sheets. D. allow XSL to directly process HTML documents. ExamSoon.com The World Renowned IT Certification Material Provider Help you pass any IT Exams Answer: C 17. When would extending the XSL processor be MOST appropriate? A. To access system services that are not available in XPath or XSL B. To avoid the "no side effects" rule in XSLT, e.g., to update a counter C. To allow direct interaction with the xsl:template actions by the application D. To perform complex calculations that are cumbersome to express in XSLT or that would seriously degrade performance Answer: AD 18. Refer to the exhibit to answer the question. Management later decides that the names of all financial research reports that mention a new element, "stock", should be displayed in the Web browser. Implementing this functionality is MOST likely to require: A. an additional XML transformation between bank and legacy system data. B. a change to the XML rendering process for financial research reports. C. an enhancement to the DTD or XML Schema for EFT transactions. D. an enhancement to the DTD or XML Schema for financial research reports. Answer: BD ExamSoon.com The World Renowned IT Certification Material Provider Help you pass any IT Exams 19. What is meant by the term "namespace coercion" in the context of XML Schema inclusions? A. The targetNamespace of the included schema must be coerced into the including schema's targetNamespace by manipulating the XML Schema DOM. B. If no targetNamespace is declared for the schema that is included, the targetNamespace is coerced into the including schema's namespace. C. The two schemas will collide in the targetNamespace. D. The including schema's targetNamespace will be coerced into a default "empty" targetNamespace, which both schemas will populate. E. The parser will be forced to discontinue parsing of the included schema, unless coerced by a setTargetNamespace() function from within the XML application. Answer: B 20. An application uses a large XML document that contains information about 10,000 customers. The application is performing poorly, with slow responses to requests for customers with a particular hobby. Which combination of the following could an XML developer use to facilitate logic for alleviating the problem? A. Create XML documents for each of the hobbies. B. Store <customer> IDs in a "hobbies" database table. C. Use IDs in each of the <hobby> elements. D. Use IDREFs in each of the <customer> elements to reference the associated hobbies. Answer: CD Examsoon.com was founded in 2006. The safer,easier way to help you pass any IT Certification exams . We provide high quality IT Certification exams practice questions and answers(Q&A). Especially Adobe, Apple, Citrix, Comptia, EMC, HP, Juniper, LPI, Nortel, Oracle, SUN, Vmware and so on. And help you pass any IT Certification exams at the first try. we guarantee your success at the first attempt with only our Certification Question&Answers, if you do not pass the exam at the first time, we will not only arrange FULL REFUND for you, but also provide you another exam of your claim, ABSOLUTELY FREE! You can reach us at any of the email addresses listed below. EMAIL: examsoon(at)hotmail.Com Examsoon.com The World Renowned IT Certification Material Provider