In each of the following questions predict the results first and then use the freelisp interpreter to check your answers:
1. Write down the results of typing the following expressions in lisp. (one line at a time).
(list 'big 'cat 'sat)
(cons 'the (list 'big 'cat 'sat))
(list 'all (list 'good 'people) 'should (list 'go 'ahead))
(cdr (car (cdr '(a (b c) d))))
(cdadr '(a (b c) d))