Respuesta :

B ∩ C is an intersection, which means only values that are present in both B and C are picked. So...
B ∩ C = {2, 4, 6}
A ∪ (B ∩ C) is a union, which means you combine all values, but discard duplicates. So...
A ∪ (B ∩ C) = {1, 2, 3, 4, 5, 6}
The answer is C Hope that helps you