oracle 1z0-151 practice test

Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Exam


Question 1

Which three are valid ways to populate a display item?

  • A. the text item tool in the Layout Editor
  • A. initial Value property
  • B. Frame 16 in either the Object Navigator or the layout Editor
  • B. User input
  • C. Canvas4 in either the Object Navigator or the Layout Editor
  • C. When-Button-Pressed trigger
  • D. Location_Id in the Object Navigator
  • D. Calculation
  • E. the Departments data block in the Object Navigator
  • E. Executing a query
Answer:

A, C, D

Explanation:
C: You can use the attachable PL/SQL libraries to implement a flexible message function formessages
that are displayed programmatically by the built-in routines MESSAGE orCHANGE_ALERT_MESSAGE,
or by assigning a message to a display item from a triggeror procedure.
D: Creating Calculated Items
Change the Item Type to Display Item.
Set the Calculation Mode property to Formula.
Set the Formula property to the required formula.
Incorrect answers:
B: Display items and text items are fairly similar and share many of the same properties. The biggest
difference between the two is that a user can navigate to a text item and change its value. This is not
possible with a display item. As its name implies, it merely displays information.
Note: Display items do not allow any user interaction - they merely display data and never accept
cursor focus.
Use a display item for the following situations:
* Null-canvas fields
* Context fields
* Fields that act as titles or prompts

Discussions

Question 2

You must be careful when coding a When-Button-Pressed trigger, because it does not accept
restricted built-ins.

  • A. Set its Visible property to No.
  • A. True
  • B. Set its Height and Width properties to 1.
  • B. False
  • C. Set its Implementation class programmatically at run time.
  • D. You do not have to do anything; if Implementation Class does not display a visible component, the bean area does not show at run time.
  • E. You cannot avoid displaying the Bean area at run time.
Answer:

B

Explanation:
The When-Button-Pressed trigger:
* Fires when the operator clicks a button
* Accepts restricted and unrestricted built-ins
* Is used to provide convenient navigation, and to display LOVs and many other frequently used
functions

Discussions

Question 3

An LOV must be displayed several times in your form; therefore, good performance when displaying
LOV is essential. In a When-New-Form-instance trigger, you want to save the ID of the LOV in a global
variable so that you can use it in any code to display the LOV.
Which built-in would you use to get the ID of the LOV?

  • A. Post-Query trigger
  • A. SHOW_LOV
  • B. Pre Query trigger
  • B. FIND_LOV
  • C. When-New-Form-instance trigger
  • C. GET_ITEM_PROPERTY
  • D. When New-Item-instance trigger
  • D. GET_LOV_PROPERTY
  • E. You need to define a master-detail relation so that the item is populated automatically.
  • E. GET_APPLICATION_PROPERTY
Answer:

B

Explanation:
Referencing Objects by Internal ID
Finding the object ID:
lov_id := FIND_LOV('my_lov')

Discussions

Question 4

The Orders form, you want to enable users to use Microsoft Excel to create and print an invoice for
the customer. The file should be created on the user's computer so that it can be printed with the
local printer.
Which WebUtil package would you use to implement this requirement?

  • A. forms Builder runtime preferences
  • A. CLIENT_GET_FILE_NAME
  • B. the UI_ICON setting in the operating system
  • B. CLIENT_HOST
  • C. the iconpath setting in the Forms registry file
  • C. CLIENT_OLE2
  • D. the UI_ICOM_EXTENSION setting in the operating system
  • D. CLIENT_TEXT_IO
  • E. the iconextension setting in the Forms registry file
  • E. CLIENT_Win_API
  • F. the FORMS_PATH setting in the Forms environment file
  • F. WEBUTIL_FILE
  • G. the classpath setting in the operating system
  • G. WEBUTIL_UTIL
Answer:

C

Explanation:
Note: Performing OLE Automation on the Client
You can use any OLE2 package on the client by prefixing it with CLIENT_. You can see the list of the
OLE2 package procedures and functions in the Forms Builder ObjectNavigator under the Built-in
Packages node.
Note 2: With WebUtil, you can do the following on the clientmachine: open a file dialog box, read
and write image or text files, execute operating system commands, perform OLE automation, and
obtain information about the client machine

Discussions

Question 5

View the Exhibit.

What four facts can you determine by examining the Object Navigator?

  • A. True
  • A. The Orders block is a detail block.
  • B. False
  • B. The Order_Items block is a detail block.
  • C. An order can be deleted only if it has no order items.
  • D. If an order is deleted, all of its order items are deleted.
  • E. You cannot delete order items without deleting the order.
  • F. You can delete an order without deleting its order items.
  • G. The Orders block is a master block.
  • H. The Order_Items block is a master block.
  • I. If you delete an order item, all of its associated inventory items are deleted.
  • J. The inventories block is a master block.
Answer:

BCHG

Discussions

Question 6

When users enter address information, you want them to be able to select the state from a static list
of values. You have not used a list of states before, and there is no database table that contains state
information.
What is the first step in creating such a list of values as quickly as possible?

  • A. Change the initial Value property to Good.
  • A. invoke the LOV wizard.
  • B. Change the Check Box Mapping of Other Values property to Not Allowed.
  • B. Create a new record group that is based on a SQL query.
  • C. Change the initial Value property to Good and the Value When Unchecked property to Null.
  • C. Create a new static record group.
  • D. Change the initial Value property to Good and the Chock Box Mapping of Other Valued property to Null.
  • D. Create a list item instead; a list of values is not appropriate for a static list.
  • E. Change the initial Value property to Good and the Check Box Mapping of Other Values property to checked.
  • F. Change the item type. It is not appropriate to use a check box to enable entry and update of more than two values in an item.
Answer:

A

Explanation:
ow to create LOV in Oracle forms?
List of Values(LOV) are used either when a selected list is too long and hence would not be
appropriate for a drop down, but needs a search form to select the value.
Steps to create LOV functionality:
* Click on the LOV icon in the object navigator and choose a manual/automatic wizard. This will
create a record group.
* Open a search form in the Dialog Page
* Select values inside this form.
* Return selected values to the original page.

Discussions

Question 7

Customers log in to your Orders application by using their customer ID, which is saved as a global
variable. When the Orders form first comes up, you want it to be populated with the customer's
orders, and you do not want customers to be able to query for another customer's orders.
You code the following triggers:
When-New Form instance on the Orders form:
GO_BLOCK('orders');
EXECUTE_QUERY;
You also have a button in the Control block labeled Query Orders with a When-Button Pressed trigger
that has the same code as the When New-Form instance trigger.
To test the form, you run it and log in a Customer 104. When you click Query Orders, all orders are
shown, not just those for Customer 104.
What is the best way to correct this issue to ensure that the customer can never query another
customer's orders?

  • A. invoke the LOV wizard.
  • A. Delete the Key-Exeqry trigger and add the its first line after the call to GO_BLOCK in the When- New-Form-instance trigger.
  • B. Create a new record group that is based on a SQL query.
  • B. Change the last line of the When-Button-Pressed code to: DO_KEY ('EXECUTE_QUERY');
  • C. Create a new static record group.
  • C. Delete the Key-Exqry trigger and put its code in an On-Select trigger.
  • D. Create a list item instead; a list of values is not appropriate for a static list.
  • D. Delete the Key-Exqry trigger and put its code in a Pre-Query trigger.
Answer:

B

Explanation:
Note: EXECUTE_QUERY procedure
Clears the current block, opens a query, and fetches anumber of selected records. If there are
changes tocommit, Forms Builder prompts the operator to committhem before continuing EXECUTE-
QUERYprocessing

Discussions

Question 8

The Orders form, whose properties have not been changed from the default, has two non-base table
text items to display the sales representative's first and last names.
You want to ensure that entries made in these Items correspond to an existing employee, so you
write a When-Validate-Item trigger for the Sales_Rep_First_Name text item:
SELECT LAST_NAME Into :last_name FROM employees
WHERE first_name = :first_name;
EXCEPTION
WHEN NO_DATA_FOUND THEN
MESSAGE ('There is no sales rep by this name');
When you test the form and enter a first name that does not exist in the database, the message that
you specified appears, but the cursor goes to the Sales_Rep_Last_Name item. You want the cursor to
remain in the Sales_Rep__First Name item until a correct first name is entered.
Also, as you continue to test the form, at times, the cursor does not leave the Sales_Rep_First_Name
item after you enter a name, but no error message appears.
Which two things can you do to correct these problems?

  • A. unrestricted built-ins only
  • A. Add the code to handle the FORM_TRIGGER_FAILURE exception.
  • B. restricted and unrestricted built-ins only
  • B. Raise the FORM_TRIGGER_FAILURE exception.
  • C. PL/SQL statements and unrestricted built-ins only
  • C. Add code to handle the TOO_MANY_ROWS exception.
  • D. PL/SQL statement-, and any built-ins
  • D. Raise the TOO_MANY_ROWS exception.
  • E. Code an On-Error trigger.
  • F. Code an On-Message trigger.
  • G. Write a When-Validate-Item trigger for the Sales_Rep_Last_Name item.
  • H. Move the code to a form-level When-Validate-Item trigger.
  • I. Change the form's validation Unit property to Record.
Answer:

B, C

Discussions

Question 9

Which three statements are true about the PL/SQL Packages panel in the Forms debugger?

  • A. Define multiple content canvases and display them in multiple modeless windows.
  • A. You can select an option button to view server packages.
  • B. Define multiple content canvases and display them in the same modeless window.
  • B. You can view packages only while the runtime process executes PL/SQL.
  • C. Define multiple content canvases and display them in multiple modal windows.
  • C. You can view the values of variables that are defined in the package specification.
  • D. Define multiple content canvases; display one in a modeless window and the others in modal windows.
  • D. You ran select an option button to view the packages that have not yet been instantiated.
  • E. This is not possible because items from a single block must be displayed on the same canvas and window.
Answer:

A, B, C

Explanation:
PL/SQL Packages Panel: This panel is used only to browse and examine the PL/SQL packages which
are been instantiated while executing the form.

Discussions

Question 10

View the Exhibit.

You are creating a menu for use with several forms. You create the structure of the menu in the
Menu Editor.
As shown in the Object Navigator in the Exhibit, which objects are menu items?

  • A. PL/SQL variables
  • A. MENU3 only
  • B. Form items
  • B. ITEM6 only
  • C. global variables
  • C. MENU3, ITEM4, ITEM5, ITEM5_MENU, and ITEMG
  • D. system variables
  • D. ITEM4, ITEM5, and ITEM6 only
  • E. parameters
  • E. ITEM4 and ITEM5 only
  • F. ITEM 4 and ITEM6 only
  • G. ITEM5 and ITEM only
  • H. MENU3 and ITEM5_MENU only
Answer:

D

Explanation:
MENU3 and ITEM5_MENU are menus.

Discussions
To page 2