Given: (defn thecount [x] 1)
What is (map thecount '((a 1) (b 2) (c 3)))
Answer: A
map returns a list of answers from applying the specified function to each element of the input list. Since thecount always returns 1, the result is a list of 1 for each input element.