Given: (defn thecount [x] 1) What is: (reduce + (map thecount '((a 1) (b 2) (c 3)) ))
Answer: E
Since thecount always returns 1, map returns a list (1 1 1). reduce adds these to get 3.