InterviewSolution
| 1. |
Explain Pl/i Interfaces To Other Products? |
|
Answer» PL/I can interface with sort programs, C, the Checkpoint/Restart facility, and user exits. The Sort program The compiler provides an interface called PLISRTx (x = A, B, C, or D) that allows you to make use of the IBM-supplied Sort programs. When used from PL/I, the Sort program sorts records of all normal lengths on a large number of sorting fields. Data of most types can be SORTED into ascending or descending order. The source of the data to be sorted can be either a data set or a user-written PL/I PROCEDURE that the Sort program will call each time a record is required for the sort. Similarly, the destination of the sort can be a data set or a PL/I procedure that handles the sorted records. Inter-Language Communication with C
The Checkpoint/Restart facility
User exits
PL/I can interface with sort programs, C, the Checkpoint/Restart facility, and user exits. The Sort program The compiler provides an interface called PLISRTx (x = A, B, C, or D) that allows you to make use of the IBM-supplied Sort programs. When used from PL/I, the Sort program sorts records of all normal lengths on a large number of sorting fields. Data of most types can be sorted into ascending or descending order. The source of the data to be sorted can be either a data set or a user-written PL/I procedure that the Sort program will call each time a record is required for the sort. Similarly, the destination of the sort can be a data set or a PL/I procedure that handles the sorted records. Inter-Language Communication with C The Checkpoint/Restart facility User exits |
|