For all questions, assume the following definitions have been executed:
(define s '(a b c d))
(define l '((a b) c d)) ;; That's the letter l (small L), not the numeral 1 (one)
Write down the value of each of these expressions:
s
(car s)
(cdr s)
(cons 'a '(b c d))
(cons (car s) (cdr s))
(car (cdr s))
(cadr s)
l ;; That's the letter l (small L), not the numeral 1 (one)
(car l)
(cdr l)
(cons '(a b) '(c d))
(cons (car l) (cdr l))
(list '(a b) '(c d))
(append '(a b) '(c d))