CSE MCQs :: LISP
- Which predicate tests to see if its first argument is an element of its second argument?
- What are the three functions required by LISP?
-
What is the output of the following statement?span class="sy0"> * (mapcar #'= '(1 2 3) '(3 2 1))
- Which is used to produce a procedure object from a procedure name?
- The original LISP machines produced by both LMI and Symbolics were based on research performed at:
-
What is the output of the given statement?*(setf sentence '(a rough road leads to stars))*(member 'stars sentence)
- Which forms offer an alternative to the recursive transformation cliche?
-
What is the output of the following statement?span class="sy0"> * (mapcar #'oddp '(1 2 3))
-
What is the output of the given statement?span class="sy0"> * (setf pairs '((maple shade) (apple fruit)))* (member '(maple shade) pairs)