Concept:Find elements that belong to only one of the two sets, then combine them.Explanation:Prime numbers between 0 and 10 are:P={2,3,5,7}Odd numbers between 0 and 10 are:Q={1,3,5,7,9}Elements in P but not in Q: 3, 5, and 7 are odd, so the only element is 2.Elements in Q but not in P: 1 and 9 are not prime.Union of both results:{2}∪{1,9}={1,2,9}Answer:{1,2,9}, which is option D.