1.
What does the term application partitioning refer to?
2.
Which three built-ins can you use to navigate between forms invoked with the OPEN_FORM builtin? (Choose three)
3.
The record group in the EMP form is populated using a SELECT statement that is constructed programmatically at runtime. Five employee records are displayed at one time, and a user chooses item two from the record group. Which built-in would you use to determine which rows were flagged in the record group?
4.
You want to create a temporary table while executing a procedure in a form. Which statement is true?
5.
Your end users will need to change values in a REF lookup field in the form application you create. To facilitate choosing a new appropriate value, your provide them with?
6.
Form_A invokes Form_B in Post-Only mode. Which statement must be true?
7.
Which value is valid for the iterate parameter in the CREATE_TIMER built-in function?
8.
You need to display a very large single-record data block. Since it will be so large, a convenient means of navigation is needed between items. Which type of canvas would you use to display the data block?
9.
You need to base a data block on the EMP table, but you do not want to give the users of the application access privileges on the table. Which type of data source would you use to create the data block?
10.
Examine this portion of code: timer_id := FIND_TIMER('my_timer'); -- DELETE_TIMER(timer_id); END IF; Select the missing code that would delete the timer.