BU CAS CS320, S2002 Solution set 4, Solution 5: (provided by Nenad Dedic) 1 ]=> (list 'a 'b '(c d)) ;Value 30: (a b (c d)) 1 ]=> (list (list 'Abraham)) ;Value 31: ((abraham)) 1 ]=> (list '(list Abraham)) ;Value 32: ((list abraham)) 1 ]=> (list '(list 'Abraham)) ;Value 33: ((list 'abraham)) 1 ]=> (cdr '((x1 y1) (x2 y2))) ;Value 34: ((x2 y2)) 1 ]=> (cadr '((x1 y1) (x2 y2))) ;Value 35: (x2 y2) 1 ]=> (pair? (cddr '(a beautiful rose))) ;Value: #t 1 ]=> (memq 'red '(red shoes blue socks)) ;Value 36: (red shoes blue socks) 1 ]=> (memq 'red '((red shoes) (blue socks))) ;Value: () 1 ]=> (equal? (list 'a 'short 'list) '(a short list)) ;Value: #t