Answer: C
cons adds one new item to the front of a linked list: (cons 'a '(b c)) = (a b c).
In this case, the new item is a sublist, (a).
Rule: In (cons '(a) '(b)), that is (cons first rest), move the left paren of the rest argument to the left of the first argument; that is the answer.