What is (length '((a b) (c d)) ) ?

  • A: 1
  • B: 2
  • C: 3
  • D: 4
  • E: 5

    Answer: B

    length returns the length of a list at top level; this is a list of 2 things, (a b) and (c d), so the length is 2.

    Page-10    Prev    Next    Page+10