| Question 1 |
|
A lambda expression is used to create:
|
| Question 3 |
|
When applied to a list, what does the function cdr do
Returns the first element of a list Concatenates two lists Constructs a list |
| Question 4 |
|
What does the function cons do?
Constructs a list from parameters Constructs expressions Concatenates two lists |
| Question 5 |
|
What does the function list do?
Constructs a list from parameters Adds an element to the beginning of a list Concatenates two lists |
| Question 6 |
|
When applied to a list, what does the function car do?
Returns the first element of a list Concatenates two lists Constructs a list |
| Question 7 |
|
Where was Scheme created?
At MIT At Stanford At CMU |
| Question 8 |
|
All recursive functions are tail recursive.
False |
| Question 9 |
|
What is the name of the multiple selector in Scheme?
COND DEFINE QUOTE |
| Question 10 |
|
Purely functional languages do not enjoy the property of referential transparency.
False |