Concept:Union of two sets means collecting every element that appears in either set, without repeating any element.Explanation:Write all elements of Q={1,3,5,7,9,10,11,13,15} first.Now add elements of T={1,2,3,5,6,7,10,11,12} that are not already in Q.The new elements are 2,6,12; the rest are already present.List all distinct elements in ascending order: {1,2,3,5,6,7,9,10,11,12,13,15}.Answer:Q∪T={1,2,3,5,6,7,9,10,11,12,13,15}Therefore, the correct option is D.