You should read Chapter 15 of the Wilensky book before answering the
next questions. Note that (cons 'a 'b)
is the
same as '(a . b)
. For example, the
dotted-pair representation of (a b s) is
(a . (b . (s . nil))). The spaces are
required around the dots when you type this, by the way. The
difference between a dotted pair and a list is that the cdr of each
cons cell in a list is a pointer to another cons cell, except the cdr
of the last cons cell, which is NIL. But a dotted pair is a cons
cell with a cdr that points to something other than another cons cell
(or NIL).