What are the outputs Indicate error if it is syntactically i
What are the outputs? Indicate \"error\" if it is syntactically incorrect in LISP. (a) (CAR \'((A B) C)) (b) (CAR(CDR\'((AB)(CD)))) (c) (MAX -3 56 90) (d) (OR(> 32) ( 10)(+2 3) (+2 \"foo\")) (f) (LIST \'(ABC)\'()) (g) (APPEND\'(ABC)\'()) (h) (APPEND \'(A) \'(B C)) (i) (COND ((
Solution
a) (A B)
b) (C D)
c) 90
d) T
e) 5
f) ((A B C) NIL)
g) (A B C)
h) (A B C)
i) 3
j) (A B C)
