Concept:Solving modulus inequalities gives the range of x for sets A and B.Set operations like union, intersection, and difference are then computed.Explanation:For set A: ∣x2−10∣≤6 means −6≤x2−10≤6.Add 10 to all parts: 4≤x2≤16.Take square root: 2≤∣x∣≤4.This gives A=[−4,−2]∪[2,4].For set B: ∣x−2∣>1 gives x−2<−1 or x−2>1.Solving: x<1 or x>3.So B=(−∞,1)∪(3,∞).Now check B−A: elements in B not in A.From (−∞,1), remove [−4,−2] (belongs to A).Remaining: (−∞,−4)∪(−2,1).From (3,∞), remove [2,4] (overlap up to 4).Remaining: (4,∞).Combine: B−A=(−∞,−4)∪(−2,1)∪(4,∞).This matches Option B.Answer:Option B is correct.