1. You can add fields from an AS/400 database by using:  
    The Define Reference Fields function.
    The Define TCP/IP Servers function.
    The Define AS/400 Information function.
  2. To create AS/400 records on the AS/400 you can use:  
    DFU
    SEU
    SDA
  3. You have to tell the GUI Designer which AS/400 server you want to connect to before you can use the database reference information. If you are connecting to a TCP/IP server, you use the Define TCP/IP Servers window before entering information into the Define AS/400 Information window.  
    True
    False
  4. The part created from the ZIP location field is a combination box because:  
    The DDS keyword RANGE is specified on the field.
    The DDS keyword VALUES is specified on the field.
    The DDS keyword COMP is specified on the field.
  5. The event-driven method of creating applications means that the program is controlled by the events selected from the window.  
    True
    False
  6. If you select the wrong alignment/spacing option so that the selected parts overlay each other, you can use the ________ function to return to the original state.  
    UNDO
    REVERT
    CLEAR
  7. Even though fields are sized according to their definition when field references are used, you can change the size of the entry field parts using the sizing tools that are available.  
    True
    False
  8. You can add code to read from a database file and display the data in a Customer Inquiry window. The first step is to:  
    Define server information
    Define the field reference file
    Define the DB2/400 file definition
  9. The RPG logic that you add for the PRESS event of the OK push button on the Customer Inquiry CUSTINQ window should perform the following functions:  
    Retrieve data from a Customer Inquiry field, retrieve data from the database file, display the Customer Information window and then display data from the database file in the Customer Information window.
    Retrieve data from a Customer Information field, retrieve data from the database file, display the Customer Inquiry window and then display data from the database file in the Customer Inquiry window
    Retrieve data from the database file, retrieve data from the Customer Inquiry field, display the Customer Inquiry window and then display data from the database file in the Customer Information window
  10. To retrieve the Customer Number entered in the CUSTNO field, you can define a ________ operation for the Text attribute of the CUSTNO field.  
    SHOWWIN
    CHAIN
    GETATR
  11. After obtaining the value of the CUSTNO field, you now have to chain to the database file CUSTOML3. Add the _______ statement, and place an indicator value of 50 in the HI value column.  
    SHOWWIN
    GETATR
    CHAIN
  12. To display the second window, you can use the ________ operation code.  
    GETATR
    READ
    SHOWWIN
  13. If you included an IF statement for checking the CHAIN indicator, you must add an ________ to your code.  
    END
    ELSE
    ENDIF
  14. To make the Customer Information window CUSTINFO invisible in order that it disappears after the OK push button is selected, you use the ________ operation code.  
    GETATR
    SHOWWIN
    SETATR
  15. The RPG compiler resides on the workstation. The application logic and the presentation interface runs on the workstation. At any time, it is possible to view the files that make up your project including the compiler listing on your workstation.  
    True
    False
  16. When you test the application and select the OK push button again on the Customer Inquiry window you receive a run-time error because:  
    the SHOWWIN operation code is trying to create a window that has already been created.
    an incorrect customer number is entered.
    the RPG logic is incorrect.