MCQOPTIONS
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 = 10c) (a = 10) (d) (setq 10 |
| A. | (setq a 10)b) (a = |
| B. | (a = b) where b = 10 |
| C. | (a = 10) (d) (setq 10 a) |
| D. | (setq 10 a)d) All of the mentioned |
| Answer» B. (a = b) where b = 10 | |