Multiple choice technology

Input File(Serial)-Reformat-Output File(Serial) Which form of Parallelism is present in this design?

  1. Component Parallelism

  2. Pipeline Parallelism

  3. Data Parallelism

  4. Multifile Parallelism

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

With serial input and output through Reformat, different stages can work simultaneously - input reads, Reformat processes, output writes. This is pipeline parallelism where data flows through stages like a pipeline. No data parallelism (same data on different flows) or component parallelism (multiple instances).