Concept:The intersection of two sets, A∩B, contains only the elements that appear in both sets.Explanation:Write each set without repeating elements: A={3,4,1,10,31} and B={4,3,31,7}.Compare the elements of A with the elements of B.The common elements are 3, 4, and 31.Therefore, A∩B={3,4,31}.Answer:A∩B={3,4,31}This corresponds to option C.