InterviewSolution
Saved Bookmarks
| 1. |
In LISP, which of the following function assigns the value 10 to the symbol a?(a) (setq a 10)(b) (a = b) where b = 10(c) (a = 10) (d) (setq 10 a)(d) All of the mentionedI had been asked this question in quiz.The doubt is from LISP Programming in section LISP Programming of Artificial Intelligence |
|
Answer» RIGHT CHOICE is (a) (SETQ a 10) Explanation: NONE. |
|