1.

Explain About Data Transmission In Pl/1?

Answer»

PL/I USES two types of data transmission: stream and record.

In stream-oriented data transmission, the ORGANIZATION of the data in the data set is ignored within the PROGRAM, and the data is treated as though it were a continuous stream of individual data values in character form. Data is converted from character form to internal form on input, and from internal form to character form on output.

In record-oriented data transmission, the data set is a collection of discrete records. The record on the external medium is GENERALLY an exact copy of the record as it exists in internal storage. No data conversion takes place during record-oriented data transmission. On input, the data is transmitted EXACTLY as it is recorded in the data set, and on output, it is transmitted exactly as it is recorded internally.

PL/I uses two types of data transmission: stream and record.

In stream-oriented data transmission, the organization of the data in the data set is ignored within the program, and the data is treated as though it were a continuous stream of individual data values in character form. Data is converted from character form to internal form on input, and from internal form to character form on output.

In record-oriented data transmission, the data set is a collection of discrete records. The record on the external medium is generally an exact copy of the record as it exists in internal storage. No data conversion takes place during record-oriented data transmission. On input, the data is transmitted exactly as it is recorded in the data set, and on output, it is transmitted exactly as it is recorded internally.



Discussion

No Comment Found