4) To achieve data parallelism component used
-
a. Replicate
-
b. Gather
-
c. Broadcast
-
d.Reformat
C
Correct answer
Explanation
Broadcast achieves data parallelism by sending the same data to multiple partitions simultaneously, allowing concurrent processing. Each partition receives a copy of the broadcast data, enabling parallel execution of operations. Replicate duplicates data but within a single flow, Gather collects data from partitions, and Reformat transforms data structure - none achieve parallelism like Broadcast.