You are developing an application for use by meteorologists. Form1 contains a list of item based on a query of cloud types that are stored in a database table. Users can add cloud types to the list by typing in new values that are automatically inserted to the database table.
Form1 calls Form2, which contains an identical list item. You do not want to requery the database to obtain the list of cloud types.
Which method can you use to pass the cloud types from Form1 to Form2?
A.
Parameter list
B.
Global variables
C.
Global record group
D.
Shared PL/SQL library
E.
There is no way to pass such data between forms; you must require the data from the database.