Easy
The operation AΔB is the symmetric difference: elements in exactly one of the two sets. Compute PΔQ and RΔS first, then take the symmetric difference of those two results and count.
P={1,2,3,4}, Q={2,3,5,6}, R={1,3,7,8,9}, S={2,4,9,10}.
1
Compute PΔQ. Keep elements in exactly one of P,Q. Common: {2,3}.
PΔQ={1,4}∪{5,6}={1,4,5,6}
2
Compute RΔS. Common element: {9}.
RΔS={1,3,7,8}∪{2,4,10}={1,2,3,4,7,8,10}
3
Combine the two results. Take (PΔQ)Δ(RΔS). Common to both: {1,4}, which drop out.
{1,4,5,6}Δ{1,2,3,4,7,8,10}⇒ ={5,6}∪{2,3,7,8,10}⇒ ={2,3,5,6,7,8,10}⇒ number of elements=7