Q2Numerical3 Marks26 Oct 2025
Consider the following Python code. How many elements will be present in `result`?
```
P = {1, 2, 3, 4}
Q = {3, 4, 5, 6}
R = {4, 5, 6, 7}
S = {2, 4, 6, 8}
result = ((P | Q) - R) & S
print(result)
```
Press Enter to check.