Is some thing in the empty list a number?
(some number? '())
Answer: B
some is an or over a set of items: some(p, lst) = p(lst1) || p(lst2) || ... || p(lst n) = p(lst1) ∨ p(lst2) ∨ ... ∨ p(l stn) .
The base case (identity or idempotent value) for or is false, since (x || false) = x, so some should return false as its base case when the list is empty.