QUESTION 1 You are asked to architect an SOA solution that leverages Java web services. The architecture needs to be flexible and allow for the SOAP 1.1, SOAP 1.2, and REST implementations. Which Java EE technology should you use? A. JAXP B. JAXB C. JAX-WS D. JAX-RPC Answer: C
QUESTION 1 How would a MIDlet that uses a GameCanvas efficiently update only a small region of the screen, from the data in the off-screen buffer? A. call flushGraphics(int, int, int, int) that specifies the region to be flushed B. call serviceRepaints() and set a clip region on the Graphics object in paint() C. Pixels […]
QUESTION 1 What are the three primary roles in a web service interaction? (Choose three.) A. Broker B. Facade C. Provider D. Decorator E. Requestor F. Interceptor Answer: ACE
QUESTION 1 Which two statements are true about JAXR support for XML registries? (Choose two.) A. The CapabilityProfile tells a client the capability level of a registry. B. UDDI registries must support ebXML to be compatible with JAXR. C. The UnsupportedCapabilityException is processed for errors from non-Java providers. D. The JAXR API declares methods as […]
QUESTION 1 Which two statements are true about XML schemas and WSDL 1.1? (Choose two.) A. http://schemas.xmlsoap.org/wsdl/ is the WSDL namespace for SOAP binding. B. xsi is used as a prefix to represent the schema namespace as defined by XSD C. XSD schemas are used as a formal definition of WSDL grammar. D. xsd is […]
QUESTION 1 Given the following stateful session bean: 10. @Stateful 11. @TransactionAttributefJransactionAttributeType. SUPPORTS) 12. public class VideoBean implements Video { 13. // insert code here 14. public void methodAO {} 15.} Assuming no other transaction-related metadata, which code can be added at Line 13 to guarantee that business method methodA will execute only if invoked […]
QUESTION 1 Given the relationship: The tag handler MyTag extends SimpleTagSupport. At runtime, the doTag method throws a SkipPageException.Which three events occur after the SkipPageException is thrown? (Choose three.) A. Evaluation of page2.jsp stops. B. Evaluation of page1.jsp stops. C. The MyTag instance is NOT reused. D. Evaluation of page2.jsp continues. E. Evaluation of page1.jsp […]
QUESTION 1 To take advantage of the capabilities of modern browsers that use web standards, such as XHTML and CSS, your web application is being converted from simple JSP pages to JSP Document format. However, one of your JSPs, /scripts/screenFunctions.jsp, generates a JavaScript file. This file is included in several web forms to create screen-specific […]
QUESTION 1 Given: 10. class One { 11. void foo() { } 12. } 13. class Two extends One { 14. //insert method here 15. } Which three methods, inserted individually at line 14, will correctly complete class Two? (Choose three.) A. public void foo() { /* more code here */ } B. private void […]
QUESTION 1 Given a pre-generics implementation of a method: public static int sum(List list) { int sum = 0; for ( Iterator iter = list.iterator(); iter.hasNext(); ) { int i = ((Integer)iter.next()).intValue(); sum += i; } return sum; } What three changes allow the class to be used with generics and avoid an unchecked warning? […]
QUESTION 1 Which two are true? (Choose two.) A. J2EE runs on consumer and embedded devices. B. J2EE includes the MIDP API. C. J2EE includes servlet APIs and EJB APIs. D. J2EE application developers need J2SE. E. J2EE applications depend on web servers. Answer: CD
QUESTION 1 Identify the Key flexfields that use qualifiers with their owning applications. (Choose four.) A. Location flexfield (Oracle Assets) B. Cost Allocation flexfield (Oracle Payroll) C. Asset Category flexfield (Oracle Assets) D. Payment Terms flexfield (Oracle Payables) E. Credit History flexfield (Oracle Receivables) F. Accounting flexfield (Oracle General Ledger) Answer: ABCF Explanation: A: Location […]
QUESTION 1 Which three fields default from the Department table to the employee job data level? (Choose three.) A. Grade B. Location C. Company D. Pay Group E. Business Unit F. Supervisor ID G. Employee Type Answer: BCF
QUESTION 1 Identify three purposes for which transaction types can be used. (Choose three.) A. to record how cash can be applied to transactions B. to set whether AutoInvoice validates transactions using IDs or values C. to set whether transactions affect the Accounts Receivable (AR) customer balances D. to record the accounting flexfield value that […]
QUESTION 1 Identify three statements that are true about bank and supplier payment. (Choose three.) A. Primary bank account can be only at the supplier site. B. Credit and debit memos are examples of payment documents. C. Supplier’s payment requires a bank account with at least one payment document. D. Use the Banking Details page […]
QUESTION 1 ABC Corp. has a requirement to share business documents from its Oracle E-Business Suite Release12 (EBS) instance with external business-to-business (B2B) exchange partners. Select the best method that you would recommend to meet this requirement. A. Build a workflow process and integrate it with external B2B exchange. B. Use notification mailer to share […]
QUESTION 1 You want to display employee records in tabular format, but the form is not wide enough to display all the items in the Employees block. The employee IDs and names of displayed records should always be visible, but you want to scroll the additional information as users tab through the Items, the form […]
QUESTION 1 Which two statements are true about the context of an application? (Choose two.) A. It is attached to a session. B. It is owned by the user SYS. C. A user can change the context of his or her application. D. The PL/SQL package associated with the context must exist before the context […]
QUESTION 1 View the Exhibit. The EMPLOYEES table contains 100 records. You are developing a Human Resources form that has an Employees block with properties as shown in the exhibit. When you run the form and execute a query in the Employees block, approximately how many network round trips will be made to the server […]