站内搜索
1Z0-132 问题列表
问题 单选题You created a department report and preview it in life preview. The font for the department name is too small and you want to enlarge it but do not want to change the font for any other fields. What is the easiest way to make this change?()A Select the text to be enlarged in the life previewer and make the size change using the style bar. B Select the text to be enlarged in the layout mode and make the change. C Open the report wizard in the re-entrant mode and make the change. D Make the copy of the report, open the copy, make the changes and then delete the original report. 

问题 单选题You want to create a pie-style chart using the Chart Wizard. What must be you do to determine the fields available for use in this chart? ()A Select the block that contains the data to appear in the pie chart. B Select the table that contains the data to appear in the pie chart. C Select the view that contains the data to appear in the pie chart. D Nothing. The wizard will automatically create the pie chart based on the highlighted data.

问题 单选题You are creating a tabular report for the sales department with a department break group. You need to ensure that if al least six sales records will not fit at the button of a page, the group will start on the next page. Which printing frame property would you alter to achieve these results?()A Source B Print direction C Maximum records per page D Minimum Widow records E Column mode

问题 单选题You are developing a bonus report for the payroll application to calculate and display the bonus issue to each envelope. Employees with a salary of less than 50000$ earn a bonus of 15% and the employees who earn 50000$ or more earn out 10% bonus. Which type of trigger would you use to conditionally assign a bonus percentage?()A Report level trigger. B Group filter. C Format trigger. D None of the above.

问题 单选题The accounts receivable department requested an accounts status to allow users to enter either a customer name, customer number, customer phone number and then display the customer out standing balance. You want to restrict the data retrieved based on values entered by the users. Which where clause would you write in the query to select statement to accomplish this task?()A p_where_clause B :p_where_clause C WHERE CUST_ID=P_CUST_ID or cust_name=:p_cust_name or cust_phone=:p_cust_phone D Where cust_ID=p_custid cust_name=p_cust_name or cust_phone=p_cust_phone

问题 单选题The transportation department requested a shipping cost report to list the resources used by each department. A separate page should be product for each department. Which property would you modify to achieve these results?()A Minimum widow records. B Column mode. C Spacing D Print direction. E Source F maximum records per page. F Maximum records per page.

问题 单选题Which statement about windows and blocks is true?()A Transaction management is block-oriented rather than window-oriented. B Forms automatically navigates to an item located in an activated window. C A window may contain multiple blocks, but each block can only span one window. D A window can contain multiple canvases, and an item can be located on multiple canvases. 

问题 单选题How can you modify the application to return more meaningful error messages to the user?()A Create a custom messages table. Include the necessary error handling code in the form modules to display the meaningful custom message instead of the ORA- error message. B Provide users with a form in the application to query the ORA- error, that will return a custom message to replace the ORA- message. C Eliminate constraints where possible, thereby limiting the number of error messages returned. D Create a procedure to include the RETRIEVE_MESSAGE built-in that automatically translates common server errors into meaningful messages for use in Forms.

问题 单选题You are developing a report to allow customers in a department store to view product information. You added a button to the layout to allow customers to view the picture of the product. Which button property would you alter to specify the source of the .BMP file?()A Type B Multimedia file C Multi media file type D Label type

问题 多选题Which three objects can be components of a menu module?()AwindowsBparametersCobject groupsDreport objectsEvisual attributes

问题 单选题You are developing the Payroll application that contains the SALARY and COMMISSION forms. When a user invoked the COMMISSION form from the SALARY form, the SAL value should be passed to the COMMISSION form. In which data form and at what time should you define the parameter to accept the value?()A SALARY form at runtime. B SALARY form at design time. C COMMISSION form at runtime. D COMMISSION form at design time. 

问题 单选题In the data model you created this query: SELECT ID_no, description, price, quantity, manufacturer_ID FROM inventory Next you click and drag the manufacturer_ID column out of and above the default group. You needed to sort the child group by ID_number. How could you accomplish this task? ()A Add an order by clause to the query. B In the data model double click the ID_number column and alter the break order. C In the layout model double click the ID_number filed and later the print direction. D Default the layout, choose a master/detail report style and select ID_number as the break order.

问题 单选题Form_A invokes Form_B in Post-Only mode. Which statement must be true?()A Form_A has updates or deletes that have not been posted or committed, and Form_A invokes Form_B with the OPEN_FORM built-in. B Form_A has updates or deletes that have not been posted or committed, and Form_A invokes Form_B with the CALL_FORM built-in. C Form_A has inserts that have not been posted or committed, and Form_A invokes Form_B with the OPEN_FORM built-in. D Form_A has inserts that have not been posted or committed, and Form_A invokes Form_B with the CALL_FORM built in.

问题 单选题Which is an example of a dynamic SELECT statement? ()A A query whose object names change during its execution. B A query whose object names are not known until run time. C A query whose bind variables values change during execution. D A query whose bind variable values are not known until run time.

问题 多选题You want to make use of the object features available in the database for the form module you are developing. Which three statements about object types are true? ()AAn object type is a user-defined composite data type.BThe attributes of an object type can be those of other object types.CA PL/SQL table of records is an example of a nested object type.DAn object type must be declared as a type before the actual object itself can be declared.