122k views
3 votes
A ____ is several programs simultaneously processing the same I/O stream.

User JosephHall
by
8.9k points

2 Answers

4 votes

Answer:

A pipeline is several programs simultaneously processing the same input/output stream.

Step-by-step explanation:

It is the data processing elements set (functions, processes, threads) in chain, series connection where output of one element is input of the other. Its analogy is similar to physical pipeline. Some buffering is allowed between consecutive elements. The information flowing through the pipeline is a stream of bits, bytes, records.

This can be one-directional and bi-directional. These are frequently implemented in multitasking Operating Systems, many processes are launched at same time.

User Tobias Ritzau
by
7.5k points
4 votes
Concurrent multiple program execution, opposite to pipeline execution where it needs to in a sequential or in order of execution. You can also say parallel process programming.
User Howard E
by
7.8k points