Concept:Find the common elements in the two integer sets and count them.Explanation:Write each set by listing all integers in the given range.P={1,2,3,4,5,6}Q={2,3,4,5,6,7,8,9,10}The intersection P∩Q contains only elements present in both sets.P∩Q={2,3,4,5,6}Count the elements: there are 5 elements.So, n(P∩Q)=5.Answer:A. 5